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

# apiTokens

> List all API tokens (short-lived JWTs) for your API key. Requires API key authentication.

### Returns

<ResponseField name="apiTokens" type="[ApiToken!]!">
  List of API tokens associated with your API key. See [ApiToken](/api-reference/graphql/types/ApiToken).
</ResponseField>

### Arguments

This query has no arguments.

### Example

```graphql theme={null}
query GetApiTokens {
  apiTokens {
    id
    token
    expiresTimeString
    requestLimit
    remaining
  }
}
```

### Playground

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