Skip to main content
POST
/
deepquant
/
jobs
Start a new DeepQuant job
curl --request POST \
  --url https://api.quantpilot.ai/deepquant/jobs \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "prompt": "Analyze BTC price action and volume patterns",
  "async": true
}'
{
  "job_id": "dq_123456",
  "status": "queued"
}

Authorizations

x-api-key
string
header
required

API key for authentication

Body

application/json
prompt
string
required

Analysis prompt/instructions

Example:

"Analyze BTC price action and volume patterns"

async
boolean
default:true

Whether to run the job asynchronously

Response

200 - application/json

Job started successfully

job_id
string
Example:

"dq_123456"

status
enum<string>
Available options:
queued,
running
Example:

"queued"