API Scan Packages

Bulk machine-readability checks via API — one-time purchase, credits valid 12 months, API key delivered by email after payment.

10
one-time · no subscription
1,000 scans
0.0100 per scan · valid 12 months
18
one-time · no subscription
2,000 scans
0.0090 per scan · valid 12 months
41
one-time · no subscription
5,000 scans
0.0082 per scan · valid 12 months
Most Popular
73
one-time · no subscription
10,000 scans
0.0073 per scan · valid 12 months
132
one-time · no subscription
20,000 scans
0.0066 per scan · valid 12 months
296
one-time · no subscription
50,000 scans
0.0059 per scan · valid 12 months
532
one-time · no subscription
100,000 scans
0.0053 per scan · valid 12 months

How it works

  1. 1Click Buy — you're redirected to Stripe's secure checkout page.
  2. 2Pay once. No account, no subscription, no hidden fees.
  3. 3Your API key arrives by email within seconds. Use it immediately.
POST/api/v1/check

Run a single domain check.

curl -X POST https://robotcheck.coffee/api/v1/check \
  -H "X-Api-Key: rc_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "example.com"}'
POST/api/v1/bulk

Submit up to 10,000 URLs as a bulk job.

curl -X POST https://robotcheck.coffee/api/v1/bulk \
  -H "X-Api-Key: rc_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"urls": ["example.com", "another.com"]}'
# → {"job_id": "...", "total": 2, "status": "queued"}
GET/api/v1/bulk/{job_id}

Poll status and results of a bulk job.

curl https://robotcheck.coffee/api/v1/bulk/JOB_ID \
  -H "X-Api-Key: rc_live_YOUR_KEY"
# → {"status": "done", "completed": 2, "total": 2, "items": [...]}

Questions? hello@robotcheck.coffee