> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Organization's Current Service Version

> Retrieve the current version of a specified service for an organization.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="org_id" type="string" required>
  The unique identifier of the organization.
</ParamField>

<ParamField path="service" type="string" required>
  The name of the service whose version you want to retrieve.\
  <br />Valid values: `"api_server"`, `"ws_server"`
</ParamField>

### Response

<ResponseField name="data" type="object">
  Contains the current version of the requested service.
</ResponseField>

<ResponseField name="data.version" type="string">
  The current version identifier of the service.
</ResponseField>

<ResponseField name="errors" type="null">
  Always `null` on success.
</ResponseField>

<ResponseExample>
  ```json Response   theme={null}
  {
    "data": {
      "version": "adf1064d-5080-4055-8493-0d4fdc3c8106"
    },
    "errors": null
  }

  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
