This endpoint returns the daily exports of your raw view data. Each export covers one full UTC day and contains every view that completed on that date, with a time-limited URL to download it as a CSV file.
Exports are generated once a day by a scheduled job and are retained for 7 days, after which the file is deleted and no longer returned. Only dates on or after the day your workspace enabled exports are available; earlier dates are never backfilled.
Exports are not generated until your workspace enables them, and the first request to this endpoint performs that enablement. That request checks your organization’s plan, records the decision, and returns an empty list together with a message naming the date your first file will cover.
Exports are available on paid plans. If your organization is not eligible the first request fails with 403, and nothing is enabled. Only that first request can fail that way — once enabled, listing and downloading are never plan-checked again, and a workspace that later downgrades keeps access to files it has already generated until they expire.
Your first file is produced by the next scheduled run, and covers the whole UTC day on which you enabled exports, including views that completed earlier that day.
COMPLETED for a day with views, EMPTY for a day with none.views_{date}.csv.The download gives you a plain CSV file, saved as views_{date}.csv. Browsers and most HTTP clients — including Python requests, httpx and JavaScript fetch — handle it automatically, so you can open or parse it directly.
The file is compressed in transit to save bandwidth. Clients that do not request compression, such as curl, wget and Java’s HttpClient, receive those compressed bytes instead of the CSV. With curl, ask for decompression explicitly:
Exports can be large — a busy day of roughly 200,000 views produces several hundred megabytes of CSV. Stream the file to disk and parse it row by row rather than loading it into memory, and use a database or data warehouse rather than a spreadsheet on high-volume days.
EMPTY with rowCount of 0 and a valid file containing only the header row. This is a success, not an error, and needs no special handling or retry.FastPix APIs are secured with Basic Authentication. Use your Access Token ID as the username and Secret Key as the password in the Authorization header of each API request.
Activate your FastPix account to generate your API credentials. See the guide here
This parameter specifies the time span the exports must be retrieved for, given as a duration string.
Exports are retained for 7 days, so the accepted range is narrower than on other data endpoints. When omitted, the full 7-day retention window is returned.
Accepted format is:
duration string for example
timespan[]=1:days or timespan[]=7:days