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_d17350aab23d54cb56520ad457b579a66aad1bea58c5fc256ff9f0380c75cea4
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"
}