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

# Endpoints

> Learn about the Dema API endpoint URL and how to make requests.

## API Endpoint

The GraphQL API is accessible via:

**Endpoint URL:** `https://api.dema.ai/graphql`

## Request Format

All requests should be sent as **POST** requests to this endpoint with your GraphQL queries in the request body.

### Request Headers

Include the following headers in your requests:

* `Content-Type: application/json`
* `Authorization: Bearer YOUR_API_TOKEN` (see [Authentication](/guides/api-access/authentication) for details)

### Request Body

The request body should contain a JSON object with your GraphQL query:

```json theme={null}
{
  "query": "query YourQuery { ... }",
  "variables": {
    // optional variables
  }
}
```

<Info>
  All GraphQL queries are sent to the same endpoint. The query itself determines
  what data is returned.
</Info>
