Static Offer API

General Concept

The static offer API is designed to be called by a backend/server. This API returns you the unfiltered inventory we have available for you. The feed can be used to extend your existing offer inventory or build your own offer system.

Target Group or Use Case: Use this API if you want to grab our inventory to insert the offers in your existing offer management system.


Calling the API

You have to enable Offers for the App via our Publisher Dashboard

By calling the Get Offers for Publishers Endpoint, you will get the full inventory of offers available in the BitLabs network.

Example Response

{
  "data": {
    "offers": [
      {
        "id": 0,
        "title": "string",
        "description": "string",
        "icon": "string",
        "image": "string",
        "link": "string",
        "is_live": true,
        "target_os": [
          "all"
        ],
        "tasks": [
          {
            "id": 0,
            "description": "string",
            "cpa": "string",
            "is_live": true
          }
        ],
        "score": 0,
        "duration": 0,
        "tags": [
          "string"
        ],
        "is_promoted": true,
        "country": "string"
      }
    ]
  }
}