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

# RelytONE API

The RelytONE API enables you to manage your Relyt projects programmatically. View all available methods in the [API reference](https://docs-relytone.data.cloud/api-reference/).

This is a REST API that provides:

* Resource-oriented URLs
* JSON-encoded request and response bodies
* Standard HTTP response codes and verbs

## Authentication

Authenticate requests using API keys with bearer token authentication. Learn how to [manage API keys](https://docs-relytone.data.cloud/api/api-key).

Include your API key in the `Authorization` header:

```bash theme={null}
curl --request POST \
  --url https://relytone.data.cloud/api/v1/user/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "<string>",
    "description": "<string>"
  }'
```

## Base URL

All API requests use this base URL:

```bash theme={null}
https://relytone.data.cloud/api/v1
```

**Common Endpoints:**

* List all organizations: `https://relytone.data.cloud/api/v1/organizations`
* List all projects: `https://relytone.data.cloud/api/v1/projects`

## Next Steps

Explore the [API reference](https://docs-relytone.data.cloud/api-reference) to test and execute API requests directly.
