Quote
Retrieve the latest quote, identity, and valuation snapshot for a symbol.
Use this endpoint when you need the latest market snapshot for a company together with high-level valuation context.
Endpoint
GET /stocks/{symbol}/quote
Test request
/stocks/AAPL/quote
Send a request to view the response.
Authentication
Required.
Authorization: Bearer <your_api_key>
Path Parameters
symbol: ticker or symbol to resolve
Response
Returns three top-level objects:
identityquotevaluation
identity includes fields such as symbol, company, exchange, currency, and updated_at.
quote includes fields such as price, open, high, low, beta, volume, float, market_cap, price_52w_high, price_52w_low, and price_change_ytd.
valuation includes fields such as pe, pb, peg, forward_pe, forward_peg_ratio, fcf_yield, ocf_yield, ev2ebitda, ev2rev, and net_cash.
market_cap is derived from price * float when both values are available.
Example Request
curl -H "Authorization: Bearer $your_api_key" \
"https://api.apifinance.ai/stocks/AAPL/quote"