API Reference
Ping
Lightweight authenticated ping for API key validation and connectivity checks.
GET
/api/v1/pingReturns a simple `ok: true` response with the resolved organization ID. Use this to verify your API key is valid, check network connectivity, and confirm your integration is configured correctly. Each successful call updates the key's `last_used_at` timestamp.
Authorization
Bearer Token Required
Include your API key in the
Authorization header as Bearer attg_live_…Headers
| Parameter | Type | Required | Description |
|---|---|---|---|
Authorization | string | required | Bearer token using your API key. Format: `Bearer attg_live_…` |
Rate Limits
120 requests per 60s window per IP address.
Responses
Responses
API key is valid. Returns the associated organization ID.
{
"ok": true,
"org_id": "550e8400-e29b-41d4-a716-446655440000"
}