Offers API

Offers APIs allow server-side data retrieval. Utilize these APIs to fetch offers directly on your server.

Get Offers

Our application interface consists of all available offers, individual and split offers, all of which can be displayed in JSON format or using micro modules to filter offers.

API Parameters.

Parameter

Description

Example

app_id

The publisher's order number is a unique (mandatory) number.

000

country_code

The country code consists of two letters (not required)

US or UK or CA

os

User's operating system (not required)

Android or IOS

Examples

This is how we call your postback URL:

https://clickwall.net/api/?app_id=0000&country_code=UK&os=Android

To request all offers use this :

https://clickwall.net/api/?app_id=0000

Response JSON

 {
  "success": true,
  "message": "Offers fetched successfully.",
  "offers_count": 525,
  "country": "All",
  "operating_system": "All",
  "offers": [
    {
      "id": 3,
      "name": "NoiseMeter",
      "description": "Get NoiseMeter app. Measure 2 sound levels.",
      "payout": 224.00000000000003,
      "image_url": "https://link_to_icon_image",
      "tracking_url": "https://clickwall.net/app/tracking/10000/AAAA/[user_id]",
      "countries": "AT, BE, BG, CY, CZ, DE, DK, EE, ES, FI, FR, GR, HU, IE, IT, LT, LU, LV, MT, NL, PL, PT, RO, SE, SI, SK",
      "operating_system": "Android",
      "has_events": 1,
      "events": [
        {
          "event_name": "Get NoiseMeter app.",
          "event_payout": 0
        },
        {
          "event_name": "Measure 2 sound levels.",
          "event_payout": 224.00000000000003
        }
      ]
    },
    {
      "id": 4,
      "name": "Compass Guide",
      "description": "Get Compass Guide app. Use the compass to find at least 2 directions.",
      "payout": 196,
      "image_url": https://link_to_icon_image",
      "tracking_url": "https://clickwall.net/app/tracking/10000/AAAA/[user_id]",
      "countries": "US",
      "operating_system": "Android",
      "has_events": 1,
      "events": [
        {
          "event_name": "Get Compass Guide app.",
          "event_payout": 0
        },
        {
          "event_name": "Use the compass to find at least 2 directions.",
          "event_payout": 196
        }
      ]
    },
    {
      "id": 5,
      "name": "Compass Guide",
      "description": "Get CubeStacker app. Play 2 consecutive games.",
      "payout": 167.99999999999997,
      "image_url": "https://link_to_icon_image",
      "tracking_url": "https://clickwall.net/app/tracking/10000/AAAA/[user_id]",
      "countries": "AT, BE, BG, CY, CZ, DE, DK, EE, ES, FI, FR, GR, HU, IE, IT, LT, LU, LV, MT, NL, PL, PT, RO, SE, SI, SK",
      "operating_system": "Android",
      "has_events": 1,
      "events": [
        {
          "event_name": "Get CubeStacker app.",
          "event_payout": 0
        },
        {
          "event_name": "Play 2 consecutive games.",
          "event_payout": 167.99999999999997
        }
      ]
    },

Last updated