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

# Quickstart

## Your First Request

Let's get started with a simple health check request to ensure that the API is accessible and functioning correctly.

### Base URL

| Environment | URL                                |
| :---------- | :--------------------------------- |
| Production  | `https://server.overflow.co`       |
| Staging     | `https://server.stage.overflow.co` |

### Test with a Health Check

Use this `curl` command to perform a health check and verify your API credentials.

```bash Health Check Request theme={null}
curl -X GET \
 'https://server.stage.overflow.co/api/v3/health' \
 -H 'x-client-id: <CLIENT_ID>' \
 -H 'x-api-key: <API_KEY>'
```

### OpenAPI Specification

#### Versioning

The current version of the API is v3, which is reflected in the base path: `/api/v3.`
