API Keys Secure authentication
Rate Limits 1000 req/min
HTTPS Only TLS 1.2+
JSON Format RESTful responses

Endpoints

GET /api/v1/stats
Get account statistics
GET /api/v1/zones
List all ad zones
POST /api/v1/zones
Create new ad zone
GET /api/v1/campaigns
List campaigns
POST /api/v1/campaigns
Create campaign
GET /api/v1/reports
Generate reports

Code Examples

curl
curl -X GET "https://api.networkgond.com/v1/stats" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
example.py
import requests

api_key = "YOUR_API_KEY"
headers = {"Authorization": f"Bearer {api_key}"}

response = requests.get(
    "https://api.networkgond.com/v1/stats",
    headers=headers
)
print(response.json())
example.js
const response = await fetch(
  'https://api.networkgond.com/v1/stats',
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Content-Type': 'application/json'
    }
  }
);
const data = await response.json();
console.log(data);
example.php
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 
  "https://api.networkgond.com/v1/stats");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer YOUR_API_KEY"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>

Need Help?

Our developer support team is here to help you integrate.

Contact Support