Skip to main content

Auth Endpoints

Endpoints for managing authentication and API keys.

Validate API Key

Check if an API key is valid and retrieve associated project info.
X-Api-Key
string
required
Your API key
GET /api/v1/{project}/auth/validate

Response

{
  "valid": true,
  "project": "my-project",
  "permissions": ["read", "write"]
}