Financial Data
Get Live Market Data
Retrieve live market data. You can specify an optional ticker for a specific stock.
GET
/
market-data
Query
curl --request GET \
--url https://sandbox.featherhq.com/market-data
[
{
"price": 123,
"ticker": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"volume": 123
}
]
This endpoint is currently under migration and will be available soon
Query Parameters
ticker
string
Optional. The ticker symbol of the stock for which to retrieve live market data.
page
integer
Optional. The page number for pagination.
per_page
integer
Optional. The number of items per page for pagination.
Response
200 - application/json
price
number
The current price of the stock.
ticker
string
The ticker symbol of the stock.
timestamp
string
The timestamp of the market data.
volume
integer
The trading volume for the stock.
curl --request GET \
--url https://sandbox.featherhq.com/market-data
[
{
"price": 123,
"ticker": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"volume": 123
}
]