## Get the API version. `$ clear-street v1:api-version get-version` **get** `/v1/version` Returns the current version string for this API endpoint. ### Returns - `V1APIVersionGetVersionResponse: BaseResponse` - `data: object { version }` API version information - `version: string` API version string ### Example ```cli clear-street v1:api-version get-version \ --api-key 'My API Key' ``` #### Response ```json { "data": { "version": "2025-10-31" }, "error": null, "metadata": { "request_id": "2c3d4e5f-6a7b-8c9d-0e1f-2a3b4c5d6e7f" } } ```