Skip to main content
GET
/
deepquant
/
jobs
/
history
Get past jobs
curl --request GET \
  --url https://api.quantpilot.ai/deepquant/jobs/history \
  --header 'x-api-key: <api-key>'
[
  {
    "job_id": "dq_123456",
    "started_at": 1678901234,
    "ended_at": 1678902234,
    "status": "completed",
    "tokens_used": 2345
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication

Response

200 - application/json

List of past jobs

job_id
string
Example:

"dq_123456"

started_at
integer

Unix timestamp

Example:

1678901234

ended_at
integer

Unix timestamp

Example:

1678902234

status
enum<string>
Available options:
completed,
terminated
Example:

"completed"

tokens_used
integer
Example:

2345