Skip to content
Get started

Get the API version.

v1.api_version.get_version() -> APIVersionGetVersionResponse
GET/v1/version

Returns the current version string for this API endpoint.

ReturnsExpand Collapse
class APIVersionGetVersionResponse:
data: Version

API version information

version: str

API version string

Get the API version.

from clear_street import ClearStreet

client = ClearStreet(
    api_key="My API Key",
)
response = client.v1.api_version.get_version()
print(response)
{
  "data": {
    "version": "2025-10-31"
  },
  "error": null,
  "metadata": {
    "request_id": "2c3d4e5f-6a7b-8c9d-0e1f-2a3b4c5d6e7f"
  }
}
Returns Examples
{
  "data": {
    "version": "2025-10-31"
  },
  "error": null,
  "metadata": {
    "request_id": "2c3d4e5f-6a7b-8c9d-0e1f-2a3b4c5d6e7f"
  }
}