Skip to main content
GET
https://connect.jobo.world
/
api
/
jobs
/
expired
curl "https://connect.jobo.world/api/jobs/expired?expired_since=2026-02-22T00:00:00Z&batch_size=1000" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "job_ids": [
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "b2c3d4e5-f6a7-8901-bcde-f12345678901"
  ],
  "next_cursor": null,
  "has_more": false
}
This endpoint is included with your subscription — no per-request credits needed.
expired_since
string
required
ISO 8601 UTC datetime. Maximum 7 days lookback.
cursor
string
Pagination cursor from previous response.
batch_size
integer
default:"1000"
IDs per batch (1–1,000).
job_ids
uuid[]
Array of expired job IDs.
next_cursor
string
Cursor for the next batch.
has_more
boolean
Whether more batches are available.
curl "https://connect.jobo.world/api/jobs/expired?expired_since=2026-02-22T00:00:00Z&batch_size=1000" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "job_ids": [
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "b2c3d4e5-f6a7-8901-bcde-f12345678901"
  ],
  "next_cursor": null,
  "has_more": false
}