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

# Accessing the Admin API

The Admin API allows you to manage your Dittofeed workspace programmatically. These endpoints are prefixed with the path `/api/admin`. Unlike public `/api/public` endpoints, Admin API endpoints require an Admin API key.

## Creating an Admin API Key

Admin API keys can be created from the settings page [`/dashboard/settings#admin-api-key`](https://app.dittofeed.com/dashboard/settings#admin-api-key).

<Frame>
  <img src="https://mintcdn.com/dittofeed/MR-erTsdiKcJhyyj/images/admin-api-key.png?fit=max&auto=format&n=MR-erTsdiKcJhyyj&q=85&s=7cd6213c83f79aa88e40488346f82a01" alt="Admin API key" width="3680" height="2382" data-path="images/admin-api-key.png" />
</Frame>

Once an Admin API key is created, its value can't be read again. Make sure to write it down and store it securely.

## Using an Admin API Token

To authenticate with the Admin API, include the Admin API key in the `Authorization` header of your requests.

```
Authorization: Bearer <token>
```
