Skip to main content
POST
/
v1
/
historical-data
/
batch
Batch historical ticks for up to 5 symbols
curl --request POST \
  --url https://api.aries.com/v1/historical-data/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "queries": [
    {
      "symbol": "HORC_1126_Republican",
      "from": "2026-04-01T00:00:00Z",
      "to": "2026-04-20T00:00:00Z",
      "limit": 500
    }
  ]
}
'
{ "success": true, "data": { "results": [ { "symbol": "<string>", "count": 1, "ticks": [ { "timestamp": "2026-04-18T13:45:01.234Z", "yesPrice": 0.5412, "noPrice": 0.4588 } ], "from": "2023-11-07T05:31:56Z", "to": "2023-11-07T05:31:56Z" } ] } }

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Body

application/json
queries
object[]
required
Required array length: 1 - 5 elements

Response

Batch history results

Standard prediction-market success envelope used by prediction historical-data and prediction-market reference endpoints. data is endpoint-specific.

success
boolean
required
Example:

true

data
object