- ETFs
- Bars
- /v1/bars/history
- Stocks
- Bars
- /v1/bars/history
- Fundamental data
- /v1/balance-sheet/history
- /v1/cash-flow/history
- /v1/earnings/history
- /v1/earnings-calendar/history
- /v1/income-statement/history
- /v1/ipo-calendar/history
- /v1/overview/history
- News
- /v1/earnings-transcripts/history
- /v1/news/history
- /v1/press-releases/history
- Fillings
- /v1/annual-report/history
- /v1/quarterly-report/history
- API key
- /v1/api-key
- Pricing
ETFs
Bars
/v1/bars/history
This API returns historical OHLCV time series of the instrument specified.
API Parameters
- Required:
ticker
(string). ExampleSPY
.- Optional:
apiKey
(string).interval
(string). Possible values1m
Â5m
Â15m
Â1d
Â1wk
Â1mo
. Default value1d
.range
(string). Possible values1d
Â5d
Â1mo
Â3mo
Â6mo
Â1y
Â5y
Â10y
Âytd
Âmax
. Default valuemax
.
Examples
‣
import json
import requests
url = "https://app.edarchimbaud.com/data/v1/bars/history"
params = {
"ticker": "SPY",
}
response = requests.get(url, params=params)
data = response.json()["data"]
print(data)
Stocks
Bars
/v1/bars/history
This API returns historical OHLCV time series of the instrument specified.
API Parameters
- Required:
ticker
(string). ExampleAAPL
.- Optional:
apiKey
(string).interval
(string). Possible values1m
Â5m
Â15m
Â1d
Â1wk
Â1mo
. Default value1d
.range
(string). Possible values1d
Â5d
Â1mo
Â3mo
Â6mo
Â1y
Â5y
Â10y
Âytd
Âmax
. Default valuemax
.
Examples
‣
import json
import requests
url = "https://app.edarchimbaud.com/data/v1/bars/history"
params = {
"ticker": "AAPL",
}
response = requests.get(url, params=params)
data = response.json()["data"]
print(data)
Fundamental data
/v1/balance-sheet/history
/v1/cash-flow/history
/v1/earnings/history
/v1/earnings-calendar/history
/v1/income-statement/history
/v1/ipo-calendar/history
/v1/overview/history
News
/v1/earnings-transcripts/history
/v1/news/history
/v1/press-releases/history
Fillings
/v1/annual-report/history
/v1/quarterly-report/history
API key
/v1/api-key
This API sends a new API key by email.
API Parameters
- Required:
email
(string).
Pricing
Basic | Premium | |
Price | Free | Blog subscription ($8 per month) |
Requests | Max 100 request per day | Unlimited |
Rate Limit | 300 requests per minute | 300 requests per minute |