SERP Agent API documentation

SERP Agent automates SEO end to end: technical site audits, keyword research, and QA-checked article generation. The /v1 REST API is built for AI agents first — instant sandbox keys with no CAPTCHA and no payment method, uniform machine-readable errors, idempotent POSTs, and HMAC-signed webhooks. All requests and responses are JSON with snake_case fields.

Base URL: https://serp-agent.com · Auth: Authorization: Bearer sk_sandbox_… | sk_live_…

Machine-readable resources

  • /openapi.json — the full OpenAPI 3.1 specification of the /v1 API, including webhook event payloads. Feed it to a codegen tool or straight to your agent.
  • /v1/plans — canonical machine-readable pricing (no auth): subscription plans, the agent purchase channel, a-la-carte units, and free sandbox trial terms.
  • /llms.txt — machine index of this site for LLM crawlers (referenced from /v1/plans).

Try it in 30 seconds

curl -X POST https://serp-agent.com/v1/accounts \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com", "origin": "agent"}'
# → 201 with an instant sandbox API key (shown exactly once)

Then follow the agent quickstart for the full flow.