This article will cover the following:
When to use these endpoints:
Use these dimensional reporting endpoints to analyze traffic quality, identify geo and device patterns, and optimize creative and landing page performance across your network.
Use these dimensional reporting endpoints to analyze traffic quality, identify geo and device patterns, and optimize creative and landing page performance across your network.
Authentication: All CAKE API requests require your
api_key parameter. Find yours under Setup → System Access → API Keys.Part of a series: This focused guide covers specific endpoints from the complete CAKE API — Reporting reference, which documents all available endpoints for this feature area.
Available Endpoints
Daily Report
Aggregates performance by day — use to track daily trends, spot traffic anomalies, or build time-series charts in external dashboards.
When to use: Build time-series performance charts, detect daily traffic anomalies, or automate daily performance emails.
GET /api/2/report/daily.json| Parameter | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your CAKE API key. |
| start_date | date | Yes | Start date (YYYY-MM-DD). |
| end_date | date | Yes | End date (YYYY-MM-DD). |
| offer_id | integer | No | Filter by offer. |
| affiliate_id | integer | No | Filter by affiliate. |
| advertiser_id | integer | No | Filter by advertiser. |
Sample request
GET https://yourdomain.cakemarketing.com/api/2/report/daily.json?api_key=YOUR_API_KEY&start_date=2026-01-01&end_date=2026-01-07&offer_id=12345Sample response
{
"request_status": "Success",
"response": {
"data": {
"rows": [
{ "date": "2026-01-01", "clicks": 1200, "conversions": 44, "payout": 792.00, "revenue": 968.00 },
{ "date": "2026-01-02", "clicks": 1350, "conversions": 52, "payout": 936.00, "revenue": 1144.00 }
]
}
}
}You may also be interested in:
If you have any questions, please reach out to your dedicated CAKE Client Success Manager/Account Manager or contact the CAKE Support Team at support@getCAKE.com.
You may also be interested in:
If you have any questions, please reach out to your dedicated CAKE Client Success Manager/Account Manager or contact the CAKE Support Team at support@getCAKE.com.