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

> Short-lived API token (JWT) metadata for authenticated GraphQL requests.

### TypeScript shape

```ts theme={null}
interface ApiToken {
  id: string;
  token: string;
  expiresTimeString: string;
  requestLimit: string;
  remaining: string | null;
}
```

<ResponseField name="id" type="String!">
  Unique identifier for the token. Revoke via [deleteApiToken](/api-reference/graphql/mutations/deleteApiToken).
</ResponseField>

<ResponseField name="token" type="String!">
  JWT to be passed in the <code>Authorization: Bearer token</code> header for API requests.
</ResponseField>

<ResponseField name="expiresTimeString" type="String!">
  Expiration time of the token (ISO 8601 format).
</ResponseField>

<ResponseField name="requestLimit" type="String!">
  Maximum number of root fields this API token is allowed to resolve before rate limiting applies.
</ResponseField>

<ResponseField name="remaining" type="String">
  Approximate number of remaining resolutions before this token is rate limited.
</ResponseField>
