Skip to main content
GET
/
v1
/
jobs
/
stats
Job Stats
curl --request GET \
  --url https://api.ontora.com/v1/jobs/stats \
  --header 'Authorization: Bearer <token>'
{
  "stats": [
    {
      "type": "<string>",
      "status": "<string>",
      "count": 123
    }
  ],
  "total": 123,
  "queued": 123,
  "running": 123,
  "done": 123,
  "failed": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.ontora.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

workspace_id
string<uuid>
required

Response

Successful Response

stats
JobStats · object[]
required
total
integer
required
queued
integer
required
running
integer
required
done
integer
required
failed
integer
required