The survey 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 own offer system.
To call an API you will need API_KEY
. Here's how you can do it:
By calling the Get Surveys for Publishers Endpoint, you will get the full inventory of offers available in the Revlum network. The response should look like this:
[
{
"title":"Revlum Survey",
"description":"Complete a survey",
"image":"https://revlum.com/images/image.png",
"revenue":"22.7500",
"category":"offer",
"countries":[
"BE",
"UA",
"GB"
],
"offerID":"1169",
"platform":"desktop",
"url":"https://revlum.com/api/redirect/wpvnaqodiv6lc9nsm6mw16ds8yo5x1/1169/{userID}"
}
]
Filter |
Values |
Example |
Platform |
android, ios, desktop, all |
https://revlum.com/api?apikey=API_KEY &category=survey&platform=desktop,android |
Country |
US, UK, or use (*) for all |
https://revlum.com/api?apikey=API_KEY &category=survey&country=* |
Category |
offer, survey |
https://revlum.com/api?apikey=API_KEY &category=offer |
Limit |
page can't be without limit and can't be 0 |
https://revlum.com/api?apikey=API_KEY &category=survey&limit=100&page=1 |
Combined |
You can also combine all the parameters together for deeper filtering. |
https://revlum.com/api?apikey=API_KEY &country=US,UK,CA&category=offer&platform=desktop&limit=100&page=1 |