Latest Price
Get the most recent stock price for a company.
GET
/api/v1/companies/{cik_or_ticker}/prices/latest Cost: 100 creditsParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| cik_or_ticker | string | Required | Company CIK or ticker symbol |
Code examples
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.beefi.ai/api/v1/companies/TSLA/prices/latest"Try it
GET
/companies/{cik_or_ticker}/prices/latestResponse
{
"date": "2024-03-08",
"open": 179.83,
"high": 180.64,
"low": 175.57,
"close": 175.10,
"volume": 115453700
}