curl --request POST \
--url https://api.bigdata.com/v1/quote/query \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"identifier": {
"type": "rp_entity_id",
"value": "4A6F00"
}
}
'{
"results": [
{
"rp_entity_id": "<string>",
"target_identifier_id": "<string>",
"name": "<string>",
"price": 245.79,
"change_percentage": -0.546,
"change": -1.35,
"volume": 30515935,
"day_low": 240.74,
"day_high": 246.49,
"year_high": 256,
"year_low": 140.53,
"market_cap": 2972724892681,
"price_avg_50": 214.116,
"price_avg_200": 184.673,
"exchange": "NASDAQ",
"open": 244.165,
"previous_close": 247.14,
"timestamp": "2025-09-25T20:00:00",
"currency": "USD"
}
],
"errors": [
{
"message": "<string>"
}
],
"metadata": {
"request_id": "<string>",
"timestamp": "<string>"
}
}This endpoint provides real-time asset quotes with the Quote API. Access up-to-the-minute prices, price changes, and trading volume for individual assets, ensuring you stay on top of market movements. Assets covered include stocks, cryptocurrencies, commodities, and ETFs.
curl --request POST \
--url https://api.bigdata.com/v1/quote/query \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"identifier": {
"type": "rp_entity_id",
"value": "4A6F00"
}
}
'{
"results": [
{
"rp_entity_id": "<string>",
"target_identifier_id": "<string>",
"name": "<string>",
"price": 245.79,
"change_percentage": -0.546,
"change": -1.35,
"volume": 30515935,
"day_low": 240.74,
"day_high": 246.49,
"year_high": 256,
"year_low": 140.53,
"market_cap": 2972724892681,
"price_avg_50": 214.116,
"price_avg_200": 184.673,
"exchange": "NASDAQ",
"open": 244.165,
"previous_close": 247.14,
"timestamp": "2025-09-25T20:00:00",
"currency": "USD"
}
],
"errors": [
{
"message": "<string>"
}
],
"metadata": {
"request_id": "<string>",
"timestamp": "<string>"
}
}Object specifying which identifier you are using to request the quote. You must supply one type and its corresponding value.
Show child attributes
The identifier namespace. Currently only rp_entity_id is supported.
rp_entity_id Bigdata uses the RavenPack Entity identifier (RP_Entity_ID) to uniquely reference entities such as companies. This identifier is a 6-character alphanumeric code (letters and numbers only). Example: Alphabet Inc. (4A6F00)
"4A6F00"
Successful Response
Show child attributes
RavenPack internal entity identifier.
The target identifier provided in the request, e.g., stock symbol.
The name of the company.
The current price of the company.
245.79
The percentage change in the price of the company.
-0.546
The change in the price of the company.
-1.35
The volume of the company.
30515935
The low price of the company.
240.74
The high price of the company.
246.49
The highest price of the company in the last year.
256
The lowest price of the company in the last year.
140.53
The market cap of the company.
2972724892681
The average price of the company over the last 50 days.
214.116
The average price of the company over the last 200 days.
184.673
The exchange of the company.
"NASDAQ"
The opening price of the company.
244.165
The previous closing price of the company.
247.14
The timestamp of the company quote.
"2025-09-25T20:00:00"
The currency of the asset.
"USD"
Was this page helpful?