Skip to main content

Publisher Conversions API

Retrieve conversion data for a publishers using a simple API

Updated over a week ago

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

apiKey

string

Yes

Publisher API key for authentication

start

string

Yes

Start date for the conversion data range (ISO format)

end

string

Yes

End date for the conversion data range (ISO format)

offerId

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

rows

array

Array of conversion data rows

rows[].time

string

Timestamp when the conversion occurred (ISO format)

rows[].clickId

string

Unique identifier for the click that led to this conversion

rows[].offerId

string

Identifier of the offer associated with the conversion

rows[].eventId

string

Identifier of the event type

rows[].eventName

string

Human-readable name of the event type

rows[].subId

string

Publisher's sub-identifier for tracking

rows[].payout

number

Payout amount in USD

rows[].status

string

Conversion status - APPROVED, PENDING, or REJECTED

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 and end) 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 filtering

  • When offerId is provided, results are filtered to show only conversions for that specific offer

  • Payout 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

Did this answer your question?