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

NameInRequirementTypeDescription
tickerpathRequiredstringticker symbol
startqueryOptionalstringFirst day in the date range of all calculations/requests
endqueryOptionalstringLast day in the date range of all calculations/requests. If not provided, the last market day in the database is used
unadjqueryOptionalintegerFlag to include or exclude unadjusted prices. Only trailing 3 years of unadjusted data is available. -1 is returned on any prior date request
olhvqueryOptionalintegerFlag 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
appidqueryRequiredstring36 character GUID received from welcome email. Sign up for trial at http://apitrial.fasttrack.net
tokenqueryRequiredstringTemporary token received from auth/login end point
backfillqueryOptionalstringThis 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.
describequeryOptionalstringInsert 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

StatusDescription
200CSV file with dates and closing prices (and optional ticker symbol and name)
400bad input parameter