API (v1)
This page will guide you through the integration of Revlum API
The offer API is designed to be called by a backend/server. This API returns you the inventory we have available for you. The feed can be used to extend your existing offer inventory or build your offer system.
To call an API you will need API_KEY. Here's how you can do it:
https://revlum.com/api?apikey=API_KEY
By calling API endpoint you will get the full inventory of offers available in the Revlum network.
The response should look like this:
[
{
"title": "Capital One Shopping",
"description": "Install the app, create an account and use the app.",
"image": "https://revlum.com/offer/images/cos.png",
"payout": "14.70",
"featured": "yes",
"type": "offer",
"category": [
"download"
],
"country": [
"US"
],
"offerID": "2080",
"device": "ios",
"event": [],
"url": "https:\/\/revlum.com\/click?apiKey=wpvnaqodiv6lc9nsm6mw16ds8yo5x1&offerId=2080&userId={userID}&sub1={customValue}",
"daily_cap": 50,
"active": "yes",
"offerType": "free",
"multireward": "no",
"conversion_rate": "7.12",
"epc": "0.07"
}
By using any of the URL parameters you can filter the offers returned by our API to only show offers that are available to multiple or a certain filter type.
Filter | Values | Example |
---|---|---|
devices | android, ios, desktop, all | &devices=desktop |
countries | US, UK, or use (*) for all | &countries=US |
category | download, free, sign up, mobile apps, shopping, incent | &category=download |
type | offer or survey | &type=offer |
limit | page can't be without limit and can't be 0 | &limit=100&page=1 |
Updated 6 months ago