NewSearch millions of jobs from your AI agent with MCP

Sandbox

JobsPipe API sandbox

A free test environment for the JobsPipe API. Every route under /v1/sandbox works without an API key, consumes no quota, and returns canned sample data shaped exactly like the live endpoints - so you (or your agent) can exercise the API safely before signing up for a key.

POST /v1/sandbox/jobs/search

Sample job-search response in the exact live schema. Accepts any or empty JSON filter body.

POST /v1/sandbox/jobs/search/batch

Batch / bulk search: send a requests array of up to 10 filter objects, get one response entry per request.

POST /v1/sandbox/jobs/export

Async-job pattern: returns 202 Accepted with a Location header pointing at a status URL to poll.

GET /v1/sandbox/jobs/export/{id}

Poll an export job's status; completed jobs return a result_url with the sample data.

Try it now

Sample job search - no key, no signup:

curl
$ curl -X POST https://api.jobspipe.dev/v1/sandbox/jobs/search -H "Content-Type: application/json" -d '{"job_title_or":["software engineer"],"remote":true}'

Async export with the 202-plus-poll pattern:

curl
$ curl -i -X POST https://api.jobspipe.dev/v1/sandbox/jobs/export
$ curl https://api.jobspipe.dev/v1/sandbox/jobs/export/<job_id>

The full request and response schemas are in the JobsPipe OpenAPI specification and the API documentation. When you are ready for live data, get a free API key (100 credits/month) at https://jobspipe.dev/signup.