curl --request GET \
--url https://api.example.com/api/jobs/{job_id}{
"job_id": "<string>",
"status": "<string>",
"path": {},
"error": {},
"created_at": "<string>",
"completed_at": {}
}Retrieve the current status and results of a generation job
curl --request GET \
--url https://api.example.com/api/jobs/{job_id}{
"job_id": "<string>",
"status": "<string>",
"path": {},
"error": {},
"created_at": "<string>",
"completed_at": {}
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/timepoint-ai/timepoint-clockchain/llms.txt
Use this file to discover all available pages before exploring further.
SERVICE_API_KEY header for authentication.
X-Service-Key: your-service-api-key
pending - Job queued, not yet startedprocessing - Currently generating moment via Flash APIcompleted - Successfully generated and indexed to graphfailed - Generation or indexing failedstatus is completed.Format: /YYYY/month/DD/HHMM/country/region/city/event-slugExample: /1776/july/04/1200/united-states/pennsylvania/philadelphia/signing-declaration-independence-3f4astatus is failed. Includes Flash API response details when available.null while pending or processing.curl -X GET https://api.clockchain.io/api/jobs/a3d8f7e2-4c1b-4a9e-8f2d-1e3c5b7a9d0f \
-H "X-Service-Key: your-service-api-key"
{
"job_id": "a3d8f7e2-4c1b-4a9e-8f2d-1e3c5b7a9d0f",
"status": "pending",
"path": null,
"error": null,
"created_at": "2026-03-06T14:32:18.123456Z",
"completed_at": null
}
{
"job_id": "a3d8f7e2-4c1b-4a9e-8f2d-1e3c5b7a9d0f",
"status": "processing",
"path": null,
"error": null,
"created_at": "2026-03-06T14:32:18.123456Z",
"completed_at": null
}
{
"job_id": "a3d8f7e2-4c1b-4a9e-8f2d-1e3c5b7a9d0f",
"status": "completed",
"path": "/1776/july/04/1200/united-states/pennsylvania/philadelphia/signing-declaration-independence-3f4a",
"error": null,
"created_at": "2026-03-06T14:32:18.123456Z",
"completed_at": "2026-03-06T14:32:32.987654Z"
}
{
"job_id": "a3d8f7e2-4c1b-4a9e-8f2d-1e3c5b7a9d0f",
"status": "failed",
"path": null,
"error": "Flash API error: Invalid date format | response: {\"detail\":\"Year must be a valid integer\"}",
"created_at": "2026-03-06T14:32:18.123456Z",
"completed_at": "2026-03-06T14:32:25.456789Z"
}
path field contains the location in the graph where you can retrieve the full moment details.
error field for details. Common failure reasons:
path immediately when status becomes completed.| Status Code | Description |
|---|---|
| 404 | Job ID not found |
| 401 | Missing or invalid SERVICE_API_KEY |
| 503 | Job manager not available |
path to fetch full moment details via /api/moments/{path}