Skip to main content
GET
/
vq
/
quotes
/
batch
Get quotes for multiple symbols
curl --request GET \
  --url https://api.vectrade.io/v1/vq/quotes/batch \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "symbol": "<string>",
      "price": 123,
      "change": 123,
      "changePct": 123,
      "volume": 123,
      "timestamp": "2023-11-07T05:31:56Z",
      "dayHigh": 123,
      "dayLow": 123,
      "dayOpen": 123,
      "previousClose": 123,
      "marketCap": 123
    }
  ]
}

Authorizations

X-API-Key
string
header
required

VecTrade API key (e.g., vq_live_...)

Query Parameters

symbols
string
required

Comma-separated symbols (max 50)

Response

Batch quote data

data
object[]