Skip to main content
GET
/
jobs
List Jobs
curl --request GET \
  --url https://platform.aifano.com/jobs \
  --header 'Authorization: Bearer <token>'
[
  {
    "job_id": "<string>",
    "status": "pending",
    "result": {},
    "duration": 123,
    "usage": {
      "num_pages": 123,
      "credits": 123
    }
  }
]

Authorizations

Authorization
string
header
required

API key authentication. Use your Aifano API key (starts with ak_live_) as the Bearer token.

Response

List of jobs

job_id
string
status
enum<string>

Current job status.

Available options:
pending,
running,
completed,
failed,
cancelled
result
object

Job result (available when status is completed).

duration
number
usage
object