1

Get Your API Key

Navigate to Settings > API Keys to generate your key.

2

Authenticate Requests

Add your key to the Authorization header: Bearer YOUR_API_KEY

3

Make Your First Call

Try GET /api/v1/agents to list your agents.

Quick Example

cURL
curl -X GET "https://app.agentanchorai.com/api/v1/agents" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"