API reference
GEThttps://ftl.fasttrack.net/v1/export/{ticker}
Export CSV
Returns a CSV file of a single ticker's adjusted/unadjusted closing prices.
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 |
|---|---|---|---|---|
ticker | path | Required | string | ticker symbol |
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 |
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 | query | Required | string | 36 character GUID received from welcome email. Sign up for trial at http://apitrial.fasttrack.net |
token | query | Required | string | Temporary token received from auth/login end point |
backfill | query | Optional | string | This function exports data for all requested dates. If a requested date/date range date is before the security's inception, the security's first known value is shown. Turn this off by sending a 0 value. |
describe | query | Optional | string | Insert ticker symbol as the first line and security name as the second line. |
Request example
curl --request GET \
--url 'https://ftl.fasttrack.net/v1/export/{ticker}' \
--header 'appid: YOUR_APP_ID' \
--header 'token: YOUR_TOKEN'
Responses
| Status | Description |
|---|---|
200 | CSV file with dates and closing prices (and optional ticker symbol and name) |
400 | bad input parameter |