Documentation

Everything you need to build

From your first API call to publishing workers at scale — all the guides, references, and examples you need are here.

Search documentation… ⌘K

Quick start

Run your first job in under 5 minutes.

1

Get your API key

Sign up and copy your key from the dashboard. The Free plan gives you 100 credits per month with no credit card required.

Create a free account →
2

Submit your first job

# Submit a job to the Google Maps worker
curl -X POST https://api.seek-api.com/v1/workers/google-maps-search/jobs \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "coffee shops in Paris"}'
# Response
{
  "job_uuid": "job_a1b2c3d4e5f6",
  "status": "queued",
  "worker": "google-maps-search",
  "created_at": "2026-03-16T10:00:00Z"
}
3

Poll for the result

curl https://api.seekapi.io/v1/jobs/job_a1b2c3d4e5f6 \
  -H "X-Api-Key: YOUR_API_KEY"

When status changes to completed, the result field contains your structured JSON output. Alternatively, set a webhook URL to receive the result as a push notification.

Core concepts

Official SDKs

Idiomatic libraries for the languages you already use.

Need help?

Join our Discord community, open a GitHub discussion, or contact support directly.