Generate Access Token

Generate an OAuth 2.0 access token using the client credentials grant type.

Grant Type: Only client_credentials is supported. This is a server-to-server
authentication flow where your backend server exchanges credentials for an access token.

Token Format: The access token is a JSON Web Token (JWT) containing claims about
permissions and expiration time.

Token Expiration: Tokens typically expire in 900 seconds (15 minutes). The exact
expiration time can be found in:

  • The expires_in field (seconds until expiration)
  • The exp claim in the decoded JWT (Unix timestamp)
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Form Data
string
enum
required

The OAuth 2.0 grant type. Only 'client_credentials' is supported.

Allowed:
string
required

Your application's client identifier. Obtain from Infinity administration.

string
required

Your application's client secret. Keep this secure and never expose in client-side code.

Responses

Language
URL
LoadingLoading…
Response
Choose an example:
application/json