Kuest Docs

Get Batch Prices History

Get historical midpoint prices for many markets

POST
/batch-prices-history

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://clob.kuest.com/batch-prices-history" \  -H "Content-Type: application/json" \  -d '{    "markets": [      "string"    ]  }'
{
  "history": {
    "property1": [
      {
        "t": 0,
        "p": 0
      }
    ],
    "property2": [
      {
        "t": 0,
        "p": 0
      }
    ]
  }
}
{
  "error": "string"
}