API ReferenceGuidesChangelog
Prices

Batch get prices

POST
/v1/prices/batch

Authorization

api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/prices/batch" \  -H "Content-Type: application/json" \  -d '{}'
{  "prices": [    {      "coinId": {        "address": {          "address": "string",          "chain": "string"        },        "symbol": "string"      },      "error": "string",      "price": {        "results": [          {            "price": 0.1,            "source": "string",            "timestamp": "2019-08-24T14:15:22Z"          }        ]      }    }  ]}