> For the complete documentation index, see [llms.txt](https://developers.docstudio.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.docstudio.com/object-reference/application-token-object.md).

# Application token object

This document contains the application token object returned by token endpoints.

### Used in

| Endpoint / Area                                                                                 | How it is used                                       |
| ----------------------------------------------------------------------------------------------- | ---------------------------------------------------- |
| [Authentication and application tokens](/introduction/authentication-and-application-tokens.md) | Returned when listing or creating application tokens |

### Object example

```json
{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "name": "string",
  "token": "string",
  "createdAt": "2026-07-21T13:41:33.695Z",
  "expireAt": "2026-07-21T13:41:33.695Z",
  "lastUsedAt": "2026-07-21T13:41:33.695Z"
}
```

### Fields

<table><thead><tr><th width="127">Field</th><th>Type</th><th>Required</th><th>Description</th></tr></thead><tbody><tr><td><code>id</code></td><td>UUID</td><td>Not specified</td><td>Application token ID</td></tr><tr><td><code>name</code></td><td>string</td><td>Not specified</td><td>Application token name</td></tr><tr><td><code>token</code></td><td>string</td><td>Not specified</td><td>Token value for the <code>Authorization</code> header</td></tr><tr><td><code>createdAt</code></td><td>date-time</td><td>Not specified</td><td>Token creation date and time</td></tr><tr><td><code>expireAt</code></td><td>date-time</td><td>Not specified</td><td>Token expiration date and time</td></tr><tr><td><code>lastUsedAt</code></td><td>date-time</td><td>Not specified</td><td>Date and time when the token was last used</td></tr></tbody></table>

{% hint style="info" %}
Store the `token` value securely when it is created.
{% endhint %}
