Quickstart
Your first verified jobs request
Go from an activated subscription to source-verifiable job records in four small steps.
Before you start
- Choose a plan and complete Dodo's hosted checkout.
- Wait for the dashboard to confirm activation.
- Reveal the API key once and save it as
PRAXY_JOBS_KEY.
Search for jobs
curl
curl --get "https://praxyjobs.com/v1/jobs/search" \
-H "X-API-Key: $PRAXY_JOBS_KEY" \
--data-urlencode "q=data engineer" \
--data-urlencode "country=DE" \
--data-urlencode "limit=10"Page through results
When next_cursor is present, send it unchanged as cursor. Cursors are opaque and replace offset pagination.
response
{
"results": [{
"job_key": "…",
"title": "Data Engineer",
"url": "https://boards.greenhouse.io/acme/jobs/45812",
"employment_type": ["FULL_TIME"],
"first_seen": "2026-07-18T08:12:40Z",
"source": "greenhouse"
}],
"next_cursor": "eyJ…"
}Handle errors
Failures use RFC 9457 application/problem+json. Log the status and detail, respect Retry-After, and never retry authentication or allowance errors in a tight loop.