Skip to main content
POST
/
networks
/
supplements
/
table
/
stream
Export Data Supplements
curl --request POST \
  --url https://api.eflow.team/v1/networks/supplements/table/stream \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2025-01-01",
  "to": "2025-01-31",
  "timezone_id": 67,
  "format": "csv",
  "query": {
    "filters": {},
    "search_terms": []
  }
}
'

Documentation Index

Fetch the complete documentation index at: https://developers.everflow.io/llms.txt

Use this file to discover all available pages before exploring further.

Exports data supplement records in the specified format (CSV or JSON). Accepts the same parameters as the List Data Supplements endpoint with an additional format field. The response is a file download with the appropriate Content-Type and Content-Disposition headers set.

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
from
string
required

Start date (format: YYYY-MM-DD).

to
string
required

End date (format: YYYY-MM-DD).

timezone_id
integer
required

Timezone identifier for the date range.

format
enum<string>
required

The file format for the export.

Available options:
csv,
json
query
object

Query configuration. Same structure as the list endpoint.

Response

200

File download. Content-Type is text/csv or application/json depending on the requested format. Content-Disposition header includes the filename.