Skip to main content
GET
/
catchAll
/
jobs
/
user
List user jobs
curl --request GET \
  --url https://catchall.newscatcherapi.com/catchAll/jobs/user \
  --header 'x-api-key: <api-key>'
[
  {
    "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "query": "<string>",
    "created_at": "2025-12-16T11:15:38.127536",
    "status": "completed"
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication.

Response

200 - application/json

List of user jobs

job_id
string<uuid>
required

Job identifier.

query
string
required

The natural language query for this job.

created_at
string<date-time>
required

Job creation timestamp in ISO 8601 format.

Example:

"2025-12-16T11:15:38.127536"

status
string
required

Current processing status of the job.

Example:

"completed"