For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication & API Keys

All endpoints except GET /health require an API key.

Headers

Use bearer auth by default on every public endpoint:

Authorization: Bearer YOUR_API_KEY

Example Request

curl https://api.gateway.zert.com/api/v1/chains \
  -H "Authorization: Bearer YOUR_API_KEY"

Getting an API Key

API keys can be generated and managed directly from the Developer Dashboard - https://dashboard.zert.com/

Or contact us to request API access.

Unauthenticated Endpoint

The health check does not require authentication:

curl https://api.gateway.zert.com/api/v1/health

Returns service status and uptime. Useful for monitoring.

Last updated