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

# Verify Connection

Verify the API key and connection to Superleap. This endpoint is used by the Airbyte connector to validate credentials during connection setup.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token for authentication, [click here](https://app.superleap.com/settings/apiAccess) to generate one
</ParamField>

### Example Request

```bash theme={null}
curl --location 'https://app.superleap.com/api/v1/airbyte/verify/' \
--header 'Authorization: Bearer SUPERSECRETREDACTEDKEY'
```

### Example Response

```json theme={null}
{
    "status": "ok"
}
```

### Response Fields

| Field    | Type   | Description                                 |
| -------- | ------ | ------------------------------------------- |
| `status` | string | Returns `"ok"` when the connection is valid |
