Affiliates
List all affiliates
Retrieve a paginated list of your affiliates with their referral link, click and conversion counts, and lifetime commission. Affiliates who were invited but have not yet joined a program are not included.
get/v1/affiliates
Query parameters
page_numbernumber
Example:1
The page number for pagination.
page_sizenumber
Example:50
The number of items per page.
Response
Successfully retrieved affiliates
Example response
{
"items": [
{
"object": "affiliate",
"email": "partner@example.com",
"name": "Jane Partner",
"status": "active",
"referral_code": "a1b2c3d4",
"referral_link": "https://creem.io/affiliate?code=a1b2c3d4",
"clicks": 128,
"conversions": 12,
"earnings": 4200,
"currency": "USD"
}
],
"pagination": {
"current_page": 1,
"next_page": 2
}
}