API Key
Get a key

Latest Price

Get the most recent stock price for a company.

GET /api/v1/companies/{cik_or_ticker}/prices/latest Cost: 100 credits

Parameters

ParameterTypeRequiredDescription
cik_or_tickerstringRequiredCompany 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/latest

Response

{
  "date": "2024-03-08",
  "open": 179.83,
  "high": 180.64,
  "low": 175.57,
  "close": 175.10,
  "volume": 115453700
}