Quote

Retrieve the current quote snapshot for a ticker, including price, volume, and trailing return context.

Use this endpoint when you need the latest quote-level market state for a single security.

Endpoint

GET /securities/{ticker}/quote
Test request
/securities/AAPL/quote

Create a free account to run these investor-grade stock endpoints with your own key. Create a free account to run the full workflow.

Send a request to view the response.

Path Parameters

  • ticker: required ticker symbol

Response

Typical fields include:

  • ticker
  • name
  • exchange
  • quote.time
  • quote.price
  • quote.previous_close
  • quote.open
  • quote.high
  • quote.low
  • quote.volume
  • quote.change_value
  • quote.change_percent
  • quote.return_1d
  • quote.return_1m
  • quote.return_1y

Example Request

curl -H "Authorization: Bearer $your_api_key" \
  "https://api.apifinance.ai/securities/AAPL/quote"

Next step

Run this endpoint with your own API key

Use the playground to inspect the response first, then create a key and move into implementation once the payload fits your product.