/v1/data/marketing
GET /v1/data/marketing
Summary
Export marketing data from Datafuse to utilize in your own marketing strategies. Leverage comprehensive data to enhance your campaigns and drive better results.
Request Headers
Header | Value |
---|---|
Authorization | Bearer API_TOKEN |
Query Parameters
Parameter | Type | Description | Mandatory |
---|---|---|---|
collection_name | string | Collection name of the data you need. Available options: marketing_sales_returns_month, marketing_cost_price_margin | true |
format | string | Default csv; available: json or csv | false |
Responses
401
: Unauthorized Response
200
: Successful Response
The successful response returns a CSV or JSON file based on the collection name you requested.
CSV
header_1,header_2,header_3
123456,24.45,11.52
JSON
{
"header_1": 123456,
"header_2": 24.45,
"header_3": 11.52
}