Info

Contents

Provides general information about the API

Endpoint

GET /api/{api_version}/info  

Authentication

Send a bearer token from the API clients section:

Authorization: Bearer YOUR_TOKEN_VALUE

Tokens must be active, not revoked, and not expired.

Query parameters

ParameterInTypeRequiredDescriptionExample
AuthorizationheaderstringtrueA valid API token must be provided in the Authorization header to access this endpoint.test_92db1241b8721bddb4540fdbb4b1a56d4bbb54a006bd6086b133ff0ced37eb12
api_versionpathstringtrueThe API version to use in the request path. This should be set to the latest version for this endpoint.v0

Possible responses

HTTP 200 returns the requested and latest API version and status
{
  "status": "ok",
  "version": {
    "requested": "v0",
    "latest": "v0"
  }
}
HTTP 401 returns 401 Unauthorized for invalid token
{
  "error": "Unauthorized"
}