API quick start

AI-to-Human API documentation.

The canonical API is hosted by ZetaRank. This page provides the quick-start path and links to the live machine-readable specification.

Production API host: https://zetarank.com/wp-json/zetarank/v1/

1. Get an Agent API key

Apply for developer access and create a scoped key in the ZetaRank developer dashboard.

Apply for access

2. Discover capabilities

GET https://zetarank.com/wp-json/zetarank/v1/capabilities
GET https://zetarank.com/wp-json/zetarank/v1/services

3. Create a request

POST https://zetarank.com/wp-json/zetarank/v1/ai-to-human-request
Authorization: Bearer zr_live_xxxxxxxxx
Content-Type: application/json

{
  "name": "Jane Smith",
  "email": "jane@example.com",
  "request_type": "wordpress",
  "message": "A human developer is needed to fix checkout logic.",
  "source": "ai_agent",
  "contact_permission": true
}

4. Continue the conversation

Store the returned request ID and private request token. Subsequent read/message/payment-proposal calls use the Agent API key plus the request token.

Authorization: Bearer zr_live_xxxxxxxxx
X-ZetaRank-Request-Token: private-request-token

Machine-readable specs

OpenAPI JSON
AI discovery document