Retrieve conversion data for a publisher within a specified date range. This endpoint allows publishers to access their conversion statistics including payouts, event details, and approval status.
List publisher conversions
You can retrieve a list of publisher conversions by making a GET
request to /publisher-conversions
.
Parameters
Parameter | Type | Required | Description |
| string | Yes | Publisher API key for authentication |
| string | Yes | Start date for the conversion data range (ISO format) |
| string | Yes | End date for the conversion data range (ISO format) |
| string | No | Optional filter to retrieve conversions for a specific offer |
Request
GET /publisher-conversions?apiKey=your-api-key&start=2024-01-01T00:00:00&end=2024-01-31T23:59:59
Response
The response contains a list of conversion data within the specified date range.
{
"rows": [
{
"time": "2024-01-15T14:30:00",
"clickId": "click_12345",
"offerId": "offer123",
"eventId": "event456",
"eventName": "Purchase",
"subId": "sub_789",
"payout": 25.50,
"status": "APPROVED"
}
]
}
Response body
Attribute | Type | Description |
| array | Array of conversion data rows |
| string | Timestamp when the conversion occurred (ISO format) |
| string | Unique identifier for the click that led to this conversion |
| string | Identifier of the offer associated with the conversion |
| string | Identifier of the event type |
| string | Human-readable name of the event type |
| string | Publisher's sub-identifier for tracking |
| number | Payout amount in USD |
| string | Conversion status - |
HTTP status codes
Code | Description |
200 | Success - Returns conversion data |
400 | Bad Request - Invalid date format or missing required parameters |
403 | Forbidden - Invalid or missing API key |
Usage notes
Date parameters (
start
andend
) should be provided in ISO format (e.g.,2024-01-01T00:00:00
)The
end
date is inclusive but adjusted to exclude the final second for precise range filteringWhen
offerId
is provided, results are filtered to show only conversions for that specific offerPayout amounts are returned in USD as decimal values
The API key is matched case-insensitively against stored publisher keys
Conversion data is typically available for up to 90 days. Older data may not be accessible through this endpoint