For the complete documentation index, see llms.txt. This page is also available as Markdown.

Version

Returns the API version plus the @tokenbot-org/data-models range it is built against, so clients can check compatibility. No authentication required.

Endpoint

Method
Path
Description

GET

/v1/version

Version and compatibility info


GET /v1/version
curl https://api.tokenbot.com/v1/version

Response:

{
  "version": "0.1.0",
  "apiVersion": "0.1",
  "dataModelsVersion": "^1.6.0",
  "environment": "production",
  "timestamp": "2026-06-28T12:00:00.000Z",
  "compatibleFrontends": []
}
Field
Type
Description

version

string

REST API package version

apiVersion

string

API contract version

dataModelsVersion

string

Compatible @tokenbot-org/data-models semver range

environment

string

production, development, etc.

timestamp

string

ISO-8601 timestamp

compatibleFrontends

string[]

Optional list of compatible client versions

Last updated

Was this helpful?