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

# 🔐 Authentication

Authentication
Metrifox uses API key-based authentication to identify and authorize requests made by tenants.

Each tenant is issued one or more API keys. One of these keys must be included in the request headers to access protected endpoints.

> Base URLs: core and checkout endpoints use [https://api.metrifox.com](https://api.metrifox.com), while usage endpoints use [https://api-meter.metrifox.com](https://api-meter.metrifox.com).

## 🔑 Your API Key

You can generate and manage your API keys from the Metrifox dashboard under:

Developers > API Keys

### 🧾 Making Authenticated Requests

Include your API key in the `x-api-key` header for all requests:

### Example

```shell theme={null}
GET /v1/customers HTTP/1.1
Host: api.metrifox.com
x-api-key: sk_test_abc123xyz456
Content-Type: application/json
```
