Reports
Unmonetized Traffic
Returns domains receiving click traffic that are not currently affiliated (no active campaign). Use this to discover monetization opportunities — the status field indicates whether a campaign exists for the domain. Search by domain name to check specific merchants.
GET
/pub_api/v3/reports/unmonetized_traffic
read:reports
Query parameters
|
start_date
date (YYYY-MM-DD)
|
Start of date range. Default: 7 days ago. |
|
end_date
date (YYYY-MM-DD)
|
End of date range. Default: yesterday. Maximum range: 90 days. |
|
search
string
|
Filter domains by name (case-insensitive partial match). Use to check if a specific merchant domain is monetizable. |
|
sort
string
|
Sort field: clicks (default), domain_name. |
|
order
string
|
asc or desc (default). |
|
page
integer
|
Page number. Default: 1. |
|
per_page
integer
|
Results per page, 1–100. Default: 30. |
Response fields
FieldTypeDescription
data[].domain_name
string
The merchant domain receiving unaffiliated traffic.
data[].clicks
integer
Total unmonetized clicks to this domain in the date range.
data[].status
string
Campaign availability:
available (open campaign exists), available_on_approval (campaign exists but requires access request), or not_available (no campaign).
meta
object
Pagination:
page, per_page, total, total_pages, next_page, prev_page.
Request
curl https://developers.cuelinks.com/pub_api/v3/reports/unmonetized_traffic \ -H "Authorization: Token YOUR_API_KEY" \ -G \ -d "start_date=2026-04-06" \ -d "end_date=2026-04-12"
Search for a domain
curl https://developers.cuelinks.com/pub_api/v3/reports/unmonetized_traffic \ -H "Authorization: Token YOUR_API_KEY" \ -G \ -d "search=flipkart"
200 OK
200
{ "data": [ { "domain_name": "www.ozon.ru", "clicks": 498129, "status": "not_available" }, { "domain_name": "www.wildberries.ru", "clicks": 258407, "status": "available_on_approval" }, { "domain_name": "docs.google.com", "clicks": 15626, "status": "not_available" } ], "meta": { "page": 1, "per_page": 30, "total": 3, "total_pages": 1, "next_page": null, "prev_page": null } }
Monetization opportunity
Domains with status
Domains with status
available or available_on_approval can be monetized. Use the Campaigns endpoint to find the matching campaign and request access if needed.