List all optimization jobs for a given user. Returns job summaries with status, timestamps, and identifiers.
curl --request GET \
--url https://staging.api.fryte.xyz/planner/jobs \
--header 'Authorization: Bearer <token>'[
{
"date_created": "2026-04-30T08:00:00Z",
"job_id": "c3f1c944-a44c-4c07-ab52-7df7ba94024a",
"last_update": "2026-04-30T08:00:25Z",
"optimization_id": 7658,
"status": "succeeded"
}
]Documentation Index
Fetch the complete documentation index at: https://docs.fryte.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Optimization identifier.
Job identifier (UUID).
Timestamp when the job was created (ISO-8601).
Timestamp of the last status update (ISO-8601).
Job status: queued, running, succeeded, not_drivable, failed, canceled.
curl --request GET \
--url https://staging.api.fryte.xyz/planner/jobs \
--header 'Authorization: Bearer <token>'[
{
"date_created": "2026-04-30T08:00:00Z",
"job_id": "c3f1c944-a44c-4c07-ab52-7df7ba94024a",
"last_update": "2026-04-30T08:00:25Z",
"optimization_id": 7658,
"status": "succeeded"
}
]