Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mobula.io/llms.txt

Use this file to discover all available pages before exploring further.

Returns

apiToken
ApiToken!
Details about the requested API token. See ApiToken.

Arguments

token
String!
required
The API token string (JWT) to inspect.

Example

query GetApiToken($token: String!) {
  apiToken(token: $token) {
    id
    token
    expiresTimeString
    requestLimit
    remaining
  }
}

Playground