> ## Documentation Index
> Fetch the complete documentation index at: https://docs.attio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Attio API Token

> A token for your app to call the Attio REST API

```js theme={"system"}
import {ATTIO_API_TOKEN} from "attio/server"
```

A token for your app to call the [Attio REST API](/rest-api/overview). The token can be passed to the REST API in the `Authorization` header.
When you use this token, the REST API will be called on behalf of your app, so what the API will allow you to do depends on the scopes granted to your app.

## Example: List all objects

```typescript theme={"system"}
import {ATTIO_API_TOKEN} from "attio/server"

// ...

const response = await fetch("https://api.attio.com/v2/objects", {
  headers: {
    Authorization: `Bearer ${ATTIO_API_TOKEN}`,
    "Content-Type": "application/json",
  },
})

const data = await response.json()

data.forEach((object) => {
  // do something with each object
})
```
