get https://api.adnium.com/v1/advertiser/campaigns/:limit
Retrieve all campaigns with a limit
PHP
Replace:
[LIMIT] with how many results you want to return
[YOUR_API_TOKEN] with your token
<?php
$curl = curl_init('https://api.adnium.com/v1/advertiser/campaigns/[LIMIT]?token=[YOUR_API_TOKEN]');
curl_setopt($tcurl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
var_dump($response);
?>