API reference
POSThttps://ftl.fasttrack.net/v1/data/xmulti/range
Multiple Tickers
Retrieve multiple ticker's adjusted and unadjusted closing, open, high low, and volume data over the data range
Legacy API: This read-only reference is preserved for existing v1 integrations. New integrations should use the current API documentation.
Parameters
| Name | In | Requirement | Type | Description |
|---|---|---|---|---|
start | query | Optional | string | First day in the date range of all calculations/requests |
end | query | Optional | string | Last day in the date range of all calculations/requests. If not provided, the last market day in the database is used |
d | query | Optional | string | Use this to return a single date in the "data/{ticker}/range" function. This over rides any value set for start and end. |
unadj | query | Optional | integer | Flag to include or exclude unadjusted prices. Only trailing 3 years of unadjusted data is available. -1 is returned on any prior date request |
olhv | query | Optional | integer | Flag to include or exclude open, low, high, and volume data in on the /data/{ticker}/range and /data/{ticker} endpoints. -1 is returned on any prior date request |
appid | header | Required | string | 36 character GUID received from the welcome email. The header name must be sent exactly as lowercase appid. Sign up for a trial at http://apitrial.fasttrack.net |
token | header | Required | string | 36 character GUID returned by the auth/login endpoint. The header name must be sent exactly as lowercase token. |
Request body
Content type: application/json
[
"AAPL"
]
Request example
curl --request POST \
--url 'https://ftl.fasttrack.net/v1/data/xmulti/range' \
--header 'appid: YOUR_APP_ID' \
--header 'token: YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '["AAPL"]'
Responses
| Status | Description |
|---|---|
200 | data points associated with ticker and parameters |
400 | bad input parameter |