scrappy / markets / eod

Market Data API

Quotes, daily bars, analyst estimates, ratings, and call transcripts for listed companies.

eod

GET/scrappy/markets/v1/eod1 credit / call

Daily open, high, low, close, and volume bars, oldest first.

Bars refresh at most twice a day.

Parameters

symbol
required · a ticker symbol
from
optional · ISO date, inclusive
to
optional · ISO date, inclusive

Request

curl "https://sfaie.com/api/scrappy/markets/v1/eod?symbol=AAPL" \
  -H "Authorization: Bearer $SFAIE_API_KEY"

Response

{
  "data": [
    {
      "date": "2024-12-30",
      "open": 205.6,
      "high": 208.4,
      "low": 205.1,
      "close": 207.25,
      "volume": 38400000
    },
    {
      "date": "2024-12-31",
      "open": 208.1,
      "high": 211.9,
      "low": 207.8,
      "close": 210.4,
      "volume": 41200000
    }
  ]
}

Try it

a ticker symbol

ISO date, inclusive

ISO date, inclusive

Sign in to try this endpoint.

Calls are real. Accepted calls cost 1 credit.