NameVerdict API

Programmatic six-lane clearance for AI agents and indie tooling. Prepaid bundles, Bearer-key auth, no accounts.

1 Use

$39

One clearance call, any single candidate name.

5 Uses

$99

Five clearance calls. Spend them across names or batch them.

How it works

  1. Buy a bundle. We email you a key (nv_live_…).
  2. Hand the key to your agent. Each call burns one credit per name.
  3. Lost the key? Reply to the receipt email — we'll reissue.

Quick start

# Submit one or more names (max 5 per request, ≤ uses_remaining)
curl -X POST https://nameverdict.com/api/clearance \
  -H "Authorization: Bearer nv_live_..." \
  -H "Content-Type: application/json" \
  -d '{"names":["acme","rocket"],"niceClass":9,"productDescription":"open-source CLI tool"}'

# Response
# { "ok": true, "jobId": "abc123", "statusUrl": "https://nameverdict.com/api/clearance/abc123",
#   "creditsRemaining": 3, "namesQueued": 2 }

# Poll until done
curl https://nameverdict.com/api/clearance/abc123 \
  -H "Authorization: Bearer nv_live_..."

# {"status":"running", ...}  → poll again in ~5s
# {"status":"done", "report": {...}, "reportUrl": "...", "creditsRemaining": 3}
# {"status":"failed", "error":"internal_error", "creditsRefunded": 2}

Limits & policies