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

# API Reference

> Base URLs, authentication, and conventions for the Partner API.

The Partner API is a REST API over HTTPS. All responses are JSON wrapped in a standard envelope.

## Base URLs

| Environment | Base URL                             |
| ----------- | ------------------------------------ |
| Production  | `https://app.cr3dentials.xyz/v1`     |
| Staging     | `https://staging.cr3dentials.xyz/v1` |

## Authentication

Every request authenticates with your partner API key via the `x-api-key` header (or `Authorization: Bearer`). See [Authentication](/authentication) for details.

```
x-api-key: your_api_key_here
```

## Conventions

* **Envelope.** Successful responses look like `{ "status": "success", "data": ... }`.
* **Timestamps.** All timestamps are ISO 8601 strings in UTC.
* **Errors.** Failures return the appropriate HTTP status with `{ "statusCode", "message" }`.
* **Rate limits.** 120 requests / 60 seconds per API key. See [Rate Limits](/essentials/rate-limits).

Use the endpoints in the sidebar to explore parameters, schemas, and try requests interactively.
