v1 · Production
The Exodus API, fully documented.
One unified action endpoint, 11 actions, real-time playground. Paste your token and start firing requests in under a minute.
Actions
11
Categories
7
Token-protected
11
Endpoint
POST /api
Getting started
Three steps from zero to a response
- 01
Get a token
Use a long-lived platform token of the form
qst_<client>_<random>. Every action below requires one. - 02
Set it in the top bar
Click Set token at the top right and paste it. We store it only in your browser's localStorage and send it as
Authorization: Bearer …. - 03
Try an action
Open any playground page — fill the form, hit Send, inspect the JSON response.
Example request
One endpoint, many actions
Every call hits POST /api. The action you want lives inside the request body at action.name. Parameters are an array of { name, value } objects.
curl
curl -X POST 'https://api.stage.questar.io/v2/exodus/api' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer qst_<your_token>' \
--data '{
"action": {
"name": "api_get_data",
"parameters": [
{ "name": "license_nmbr", "value": "12-345-67" }
]
}
}'