Refinitiv Eikon · Schema

TokenResponse

OAuth 2.0 token response containing the access token and refresh token for subsequent API calls.

AnalyticsFinancial DataFinancial NewsMarket DataReal-Time DataTrading

Properties

Name Type Description
access_token string Bearer token for authenticating subsequent API requests.
refresh_token string Token for obtaining a new access token when the current one expires.
expires_in integer Number of seconds until the access token expires.
scope string Scope of access granted by the token.
token_type string Type of token issued, typically Bearer.
View JSON Schema on GitHub

JSON Schema

refinitiv-eikon-tokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenResponse",
  "title": "TokenResponse",
  "type": "object",
  "description": "OAuth 2.0 token response containing the access token and refresh token for subsequent API calls.",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "Bearer token for authenticating subsequent API requests."
    },
    "refresh_token": {
      "type": "string",
      "description": "Token for obtaining a new access token when the current one expires."
    },
    "expires_in": {
      "type": "integer",
      "description": "Number of seconds until the access token expires."
    },
    "scope": {
      "type": "string",
      "description": "Scope of access granted by the token."
    },
    "token_type": {
      "type": "string",
      "description": "Type of token issued, typically Bearer."
    }
  }
}