Daisycon offers data exports via the Daisycon API and specific URL exports. These URLs allow advertisers to automate data extraction. Available exports can easily be found in your MyDaisycon account. If an export is possible, such as for campaigns, statistics, transactions, or other relevant advertiser data, you will see an export button at the top right of the respective page.
Generated URLs are in CSV format by default, but you can customize the export using query parameters to filter the data and select a format that suits your needs (CSV, XML, JSON, or XLSX).
This guide explains how to use and adjust exports, with multiple sections detailing the available export types and how to customize them.
Build your own Export URL
To customize your export, you can build your own URL:
https://export.daisycon.com/{export_base_path}/{export_format}?token={exporttoken}&username={username}
Generate Authentication Token
- Find the desired export's base URL and format.
- Open Daisycon Common Resource API UI and authenticate first following the Authentication in Swagger documentation steps.
- After authentication, use the
/export/token
call to generate a token. - Add the token and username to your URL.
Adjust Filter
Filters can be appended as query parameters. Example:
&start_date=2025-01-01&end_date=2025-01-31
Available URL Exports
Below is an overview of some available export URLs and their configuration options.
An example export URL:
https://export.daisycon.com/advertisers/{advertiser_id}/{export_base_path}/{export_format}?filter_field=filter_value&filter_field2=filter_value2&token=exporttoken&username=username@example.com
Media Export
Exports media data associated with your advertiser account.
Property | Description |
Base URL | /advertisers/{advertiser_id}/media/{export_format} |
Available Formats | csv, xml, json, xlsx |
Filters*:
Filter Name | Required | Multiple Values | Filter Format |
subscription_status | No | Yes | String: approved, disapproved |
category_id | No | No | Number |
country_id | No | No | Number |
language_id | No | No | Number |
Transactions Export
Exports transaction data for your advertiser account.
Property | Description |
Base URL | /advertisers/{advertiser_id}/transactions/{export_format} |
Available Formats | csv, xml, json, xlsx |
Filters*:
Filter Name | Required | Multiple Values | Filter Format |
status | No | No | String: approved, pending, declined |
transaction_type | No | No | String: normal, correction, bonus |
currency_code | No | No | String: EUR, USD, GBP, etc. |
start_date | Yes | No | Date (YYYY-MM-DD) |
end_date | Yes | No | Date (YYYY-MM-DD) |
order_by | No | No | String: date, amount |
order_direction | No | No | String: asc, desc |
Statistics Export
Exports different statistical overviews, such as top-performing media.
Property | Description |
Base URL | /advertisers/{advertiser_id}/statistics/media/{export_format} |
Available Formats | csv, xml, json, xlsx |
Filters*:
Filter Name | Required | Multiple Values | Filter Format |
currency_code | No | No | String: EUR, USD, GBP, etc. |
start_date | Yes | No | Date (YYYY-MM-DD) |
end_date | Yes | No | Date (YYYY-MM-DD) |
* To find out which filter options are available, we recommend to configure an export url in MyDaisycon.
Invalidating All Export Tokens
To revoke access to all export tokens, use the Daisycon Common Resource API UI and call the /export/token/refresh
service.