> ## 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.

# apiToken

> Inspect a single API token (short-lived JWT) by token value. Requires API key authentication.

### Returns

<ResponseField name="apiToken" type="ApiToken!">
  Details about the requested API token. See [ApiToken](/api-reference/graphql/types/ApiToken).
</ResponseField>

### Arguments

<ResponseField name="token" type="String!" required>
  The API token string (JWT) to inspect.
</ResponseField>

### Example

```graphql theme={null}
query GetApiToken($token: String!) {
  apiToken(token: $token) {
    id
    token
    expiresTimeString
    requestLimit
    remaining
  }
}
```

### Playground

<iframe src={`https://graphql.mobula.io/graphql?query=${encodeURIComponent('query GetApiToken($token: String!) { apiToken(token: $token) { id token expiresTimeString requestLimit remaining } }')}&variables=${encodeURIComponent('{"token": "YOUR_JWT_TOKEN"}')}`} title="GraphQL Playground" style={{ width: '100%', minHeight: '600px', border: '1px solid var(--color-border)', borderRadius: '8px' }} />
