Skip to main content

Developer API

With the platform API it is possible to automate all of the features that are found in the Admin Panel.

1. What can advertisers automate?
  • Campaigns/groups, variations, offers, and ad formats
  • Targeting/blocking of targeting options, categories
  • Goals
  • Pull stats including adblock user data
  • Daily budget, account funding, payment types
  • Landing page name, URL & traffic share algorithm
2. What can publishers automate?
  • Ad formats and ad zones
  • Sites, URL verifications
  • Block ad types & product categories
  • Pull all stats including adblock user data
  • Bidding prices per ad format/GEO, pricing models
  • Payment types
3. How to use the API
  • The API’s interface is fast and easy to use
  • Simply select a parameter and press the Try It Out button to automatically generate code
4. Download technical documentation

How to use the platform API

We have just updated our platform API to version 2. This latest version allows you to automate every single feature inside the Admin Panel. You can use the API for simple processes such as automating repetitive tasks to save you time to more complex projects such as changing banner creatives on the fly.

Features

Both Publishers and Advertisers have a huge range of features available to them. Here is a summary of what can be automated:

Advertisers

  • Individual/group campaigns, variations, offers, ad formats.
  • Targeting/blocking of targeting options, categories, day parting.
  • Goals.
  • Pull stats including adblock user data.
  • Daily budget, account funding, payment types.
  • Landing page name, URL & traffic share algorithm.

Publishers

  • Ad formats and ad zones.
  • Sites, URL verifications.
  • Block ad types & product categories.
  • Pull all stats including adblock user data.
  • Bidding prices per ad format/GEO, pricing models.
  • Payment types.
Before getting started

The API interface shows a list of group titles. Click on a group and all the available options will drop down.

list api

HTTP Verbs

The API supports the following subset of HTTP verbs. Please note that not all features will support all verbs.

API uses

Let’s get started!

Setting up

In order to access restricted API requests, there must be a Session Token set. To set a token, you must have a valid account.

The API Token creation is available under your My Profile menu. Select API Tokens.

my profile

Click on New API Token.

api tokens

Type in the name of the Token, for this tutorial we have called ours ‘testToken’ then click Save.

The Token id is created.

token id

Logging in to the API

In the API interface, click on the Login button at the top right of the screen and enter your username and password or provide an API token. Click Send and a login request will be sent to the API to retrieve a valid session token. This token will then be used to validate all API requests you wish to make during the session.

api login

api login

How to make a request to the API

Lets use the example of the Campaigns group, click on it and the group will expand to list the available requests:

Click on the request you would like to automate, in this example we will request data for the CID 1923724 using:

get campaign

Click on Get campaign which expands the window. Enter in the Campaign id number into the field:

campaign id

Then click on the Try It Now button. The Response Body will generate the code automatically.

response body

A Response Code of 200 means it is alright to use.

How to pause a campaign

Here is another example. First select the correct function from the Campaigns group:

campaign pause

Click on Pause for one or more campaigns. Once opened, click on the Example Value, then click on the yellow box, this will automatically paste the json structure into the body box.

pause

Now the current value is zero, so now change the zero to the CID that you want to put on pause. Then click the Try it out button to generate the code needed.

campaign id

How to update a campaign’s pricing

Select the correct function:

campaign id

Click on Update a campaign, to open the window. Add the CID in the campaign id field then click Example Value, click on the yellow box which will copy the json structure into the body box.

This code contains a few different functions, but we want the campaign pricing code, so delete the part of the code not needed leaving the campaign pricing code in the box, like below:

campaign id

Now we need to change two things in the body box, the model (below is a list of the values related to which pricing model).


CampaignPricing {
model (integer, optional): Campaign pricing model (1: CPC, 2: CPM, 3: CPA, 4: Smart CPM, 5: CPV) = [‘1’, ‘2’, ‘3’, ‘4’, ‘5’],
price (number, optional): Campaign price
}

We are going to stay with CPC so we will leave model at 1

Now we need to change the price from zero to the price we want. We are going to change this to 200 which means the new price will be 200 cents or two euros.

campaign id

Then simply click the Try it out button to generate the code. Easy!

As you can see the API is packed full of features to automate, the only limit is your imagination to unlock the power of automation.

Finally make sure you subscribe to our API newsletter, which you find at the bottom of the API interface so you can get the latest news and updates.