Skip to main content
GET
/
api
/
jobs
/
expired
Retrieve IDs of recently expired jobs
curl --request GET \
  --url https://connect.jobo.world/api/jobs/expired \
  --header 'X-Api-Key: <api-key>'
{
  "job_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "next_cursor": "<string>",
  "has_more": true
}

Documentation Index

Fetch the complete documentation index at: https://jobo.world/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

API key provided by Jobo

Query Parameters

expired_since
string<date-time> | null

Return jobs that expired after this UTC timestamp (ISO 8601). Optional — defaults to 24 hours ago when omitted. Maximum lookback is 7 days.

cursor
string

Cursor for pagination

batch_size
integer
default:1000

Number of IDs per batch (default 1000)

Required range: 1 <= x <= 10000

Response

Batch of expired job IDs

job_ids
string<uuid>[]
next_cursor
string | null
has_more
boolean