GET
/
deepquant
/
jobs
/
{job_id}
curl --request GET \
  --url https://api.quantpilot.ai/deepquant/jobs/{job_id} \
  --header 'x-api-key: <api-key>'
{
  "job_id": "dq_123456",
  "status": "running",
  "tokens_used": 1234,
  "tasks": [
    {
      "task_id": "task_789",
      "status": "running",
      "description": "Analyzing price patterns"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

job_id
string
required

Response

200 - application/json

Job details

The response is of type object.