The Conversion Data API includes detailed data on all user actions that result in user rewards or partner payouts. Since this dataset can be large, we recommend using query parameters to refine and limit its scope for analysis.
While some data in the Conversion Data API is also sent as a postback, connecting to it ensures you continue to receive up-to-date, accurate conversion data even if your server experiences an outage or downtime.
Note: APIs can be used with our iFrame but not with our Wallet solution.
Endpoint
Before you attempt to connect, complete the steps in Prepare to Connect to Besitos APIs.
Endpoint URL | https://wall.besitos.ai/data/partner/conversions |
HTTP method | GET |
Refresh rate | 5 minutes |
Query parameters
Query parameter | Data type | Required | Description |
| string | no | Start date of the reporting period, formatted as |
| string | no | End date of the reporting period, formatted as |
| string | no | Filter results by user ID. |
| string | no | Filter results by offer ID. |
| boolean | no | Filter results by reversal status. Set to |
| number | no | Number of records to return per page. |
| number | no | Page number to return. Used for paginated results. |
| string | no | Filter results by conversion type. Possible values are |
Examples
Request
Request
GET https://wall.besitos.ai/data/partner/conversions?from_date=2024-12-01&to_date=2024-12-16&user_id=tWAek9twniogX0e&offer_id=NvGopKLbVIA9&is_reverse=false&per_page=2&page=3;
Response
Response
{
"data": [
{
"user_id": "asdfn-234ghhh",
"transaction_id": 2601266,
"reward": 0,
"payout": 11.05,
"offer_id": "tU5z8PU5BIR9",
"offer_name": "Club Vegas Slots",
"note": "Successfully Installed the App",
"date_time": "2024-12-04 06:24:55",
"reward_local_currency": 0,
"goal_id": "tU5z8PU5BIR9_0"
},
{
"user_id": "asdfn-234ghhh",
"transaction_id": 2601267,
"reward": 40,
"payout": 0,
"offer_id": "tU5z8PU5BIR9",
"offer_name": "Club Vegas Slots",
"note": "Level 91 Reached",
"date_time": "2024-12-04 06:25:36",
"reward_local_currency": 4000,
"goal_id": "tU5z8PU5BIR9_133"
},
],
"links": {
"first": "https://wall.besitos.ai/data/partner/conversions?page=1",
"last": "https://wall.besitos.ai/data/partner/conversions?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://wall.besitos.ai/data/partner/conversions?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "https://wall.besitos.ai/data/partner/conversions",
"per_page": 1000,
"to": 6,
"total": 6
}
}Response attributes
Attributes | Data Type | Description | Example |
Data |
|
|
|
| string | The user's unique ID in your system. IDs are case-insensitive and limited to 50 characters. |
|
| number | Unique ID for the conversion traction. Use this value for deduplication. If a reversal occurs, the same transaction ID will be sent again with |
|
| number | Reward amount awarded to the user, in USD. |
|
| number | Reward amount awarded to the user in your local currency (for example, points or coins). Calculated using your configured currency-to-USD conversion ratio. |
|
| number | Amount paid to you (the partner), in USD. Corresponds to the |
|
| string | Unique identifier for the offer. |
|
| string | Name of the offer the user is participating in. |
|
| string | A description of the completed goal or conversion event. |
|
| string/datetime | Date and time the event occured, in EST. |
|
| string | Unique identifier for the goal within the offer. |
|
| boolean | Indicates that a previously reported conversion has been reversed. When present with a value of |
|
| string | Conversion type. Returned only when surveys are enabled. Possible values are |
|
| string | Unique identifier for the survey. Returned only for survey conversions. |
|
Links |
|
|
|
| string | URL for the first page of results. | |
| string | URL for the last page of results. | |
| string | URL for the previous page. Returns | |
| string | URL for the next page. Returns | |
Meta |
|
|
|
| number | Current page number. |
|
| number | Index of the first item returned on the current page. |
|
| number | Index of the last item returned on the current page. |
|
| number | The total number of pages available. |
|
| array | Pagination link objects containing | includes |
| string | Base URL used for pagination. | |
| number | Maximum number of items returned per page. |
|
| number | Total number of items available across all pages. |
|
*If you're interested in enabling surveys, please contact your Besitos Account Manager at [email protected] or through your project channel in Slack.
