Auction examples
- Running auctions
- Sponsored listings
- Sponsored banners
- Sponsored brands
Asset examples
Webhook examples
Assets API
Billing API
- GETGet Billing Contacts
- GETGet Billing Contact
- PUTUpsert Billing Contact
- GETGet Campaign Billing Contact
- PUTUpsert Campaign Billing Contact
- GETGet Marketplace Credit Limitdeprecated
- POSTSet Marketplace Credit Limitdeprecated
- PUTUpsert Vendor Billing Contact
- GETGet Vendor Chargesdeprecated
- GETGet Vendor Account Activitydeprecated
- GETGet Vendor Balance
- POSTAdd Vendor Balance
- POSTBurn Vendor Balance
- GETGet Vendor Credit Historydeprecated
- GETGet Vendor Credit Limitdeprecated
- POSTSet Vendor Credit Limitdeprecated
- DELDelete Vendor Billing Contact
- GETGet Vendor Wallets
- POSTCreate Wallet
- POSTAdjust Wallet Balance
Campaign API
- GETGet Campaigns
- POSTCreate Campaign
- GETGet Campaign By Id
- DELDelete Campaign By Id
- PATCHUpdate Campaign By Id
- GETGet Campaign Bids
- POSTCreate Campaign Bids
- DELDelete Campaign Bid By Id
- PATCHUpdate Campaign Bid By Id
- GETGet Campaign Restriction
- POSTCreate Campaign Restriction
- PATCHUpdate Campaign Restriction
- POST[BETA] Get estimated clicks of a future campaign for a given vendordeprecated
- GETGet Products In Campaign
- GETGet Restriction Types
- GETGet Restriction Type
- GETGet Sponsored Productsdeprecated
Catalog API
Invitation API
Offsite Ads API
- POSTCreate a new advertiser
- GETGet advertiser onboarding state for a specific DSP
- PUTUpsert Advertiser Domain
- GETGet vendor offsite campaigns
- POSTCreate Campaign
- GETGet campaign information
- PATCHUpdate Campaign
- GETGet Job Status
- GETGet Campaign Aggregated Report
- GETGet Campaign Daily Report
- GETGet Campaign Products Report
Reporting API
- GETGet Campaign Report
- GETGet Campaign Daily Report
- GETGet Campaign Report By Product
- GETGet Product Report
- GETGet Product Daily Report
- GETGet Interactions Dump Urls
- GETGet Scored Attribution Dump Urls
- GETGet Marketplace Interactions Report
- GETGet Marketplace Report
- GETGet Marketplace Campaigns Kpis
- GETGet Marketplace Daily Report
- GETGet Marketplace Vendors Kpis
- GETGet Vendor Report
- GETGet Vendor Daily Report
Segments Service
Toppie API
- GET[BETA] Get Toppie Campaigns
- POST[BETA] Create Toppie Campaign
- GET[BETA] Get Toppie Campaign Details
- DEL[BETA] Delete Toppie Campaign
- PATCH[BETA] Update Toppie Campaign
- GET[BETA] Get Toppie Campaign Bids
- GET[BETA] List Account Products
- GET[BETA] Get Agency Account Report.
- GET[BETA] Account Activity Reports.
- GET[BETA] Get Campaigns Reporting.
- GET[BETA] Get Campaign Report.
- GET[BETA] Get Campaign Products Report.
- GETGet Agency Daily Kpis By Product Dump Urls
Forecasting Service
Offsite Ads API
Get Campaign Daily Report
Get campaign daily report.
GET
/
public
/
v1
/
offsite-ads
/
reporting
/
campaigns
/
{campaign-id}
/
daily
Copy
Ask AI
curl --request GET \
--url https://api.topsort.com/public/v1/offsite-ads/reporting/campaigns/{campaign-id}/daily
Copy
Ask AI
{
"hasMore": true,
"nextPage": "SSBzb2xlbW5seSBzd2VhciB0aGF0IEkgYW0gdXAgdG8gbm8gZ29vZAo=",
"reports": [
{
"clicks": {
"adSpent": 123,
"charged": 123,
"total": 123
},
"date": "2023-12-25",
"impressions": {
"adSpent": 123,
"charged": 123,
"total": 123
},
"purchases": {
"amount": 123,
"count": 123,
"countByProduct": {},
"quantity": 123
}
}
]
}
Path Parameters
The ID of the campaign to get the daily report for.
Query Parameters
The ID of the vendor to get the daily report for.
The start date for which reports will be generated.
The end date for which reports will be generated.
The pagination limit.
Required range:
0 <= x <= 365
Pagination cursor as provided in an earlier response. If provided will fetch the next page of results.
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.topsort.com/public/v1/offsite-ads/reporting/campaigns/{campaign-id}/daily
Copy
Ask AI
{
"hasMore": true,
"nextPage": "SSBzb2xlbW5seSBzd2VhciB0aGF0IEkgYW0gdXAgdG8gbm8gZ29vZAo=",
"reports": [
{
"clicks": {
"adSpent": 123,
"charged": 123,
"total": 123
},
"date": "2023-12-25",
"impressions": {
"adSpent": 123,
"charged": 123,
"total": 123
},
"purchases": {
"amount": 123,
"count": 123,
"countByProduct": {},
"quantity": 123
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.