Ad Radar documentation

Integrate Ad Radar in minutes — REST API, WordPress plugin, and embed widgets.

https://adradar.api.jetweb.appREST APIEU-hosted

Overview

Ad Radar aggregates spend and performance data from Google Ads, Meta Ads, TikTok Ads, LinkedIn Ads, and Pinterest into a single dashboard, and can scan your competitors to surface what they run and roughly what they spend.

Quick start

Create a project with the ad account you want to track plus a list of competitor domains. The first scan runs automatically and ingests the last 30 days of data.

bash
curl -X POST https://adradar.api.jetweb.app/api/projects \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My Google Ads account",
    "competitors": ["example.com", "competitor.com"]
  }'

Authentication

Every API endpoint requires a Bearer token. Generate one in the dashboard under "API Keys" for the relevant product. Keep tokens server-side — never commit them to public repositories or ship them in frontend bundles.

bash
Authorization: Bearer YOUR_API_KEY

Endpoints

Base URL: https://adradar.api.jetweb.app

POST
/api/projects
Create a new tracking project.
GET
/api/projects/:id/ads
List the active ads currently running for a project, across all supported platforms.
POST
/api/scans
Trigger an on-demand scan for a project.
GET
/api/insights
Return AI-generated insights about spend efficiency, creative fatigue, and competitive gaps.

Integrations

Connect your Google Ads and Meta Ads accounts via OAuth in the dashboard; TikTok, LinkedIn, and Pinterest connectors are available on the Business plan. Call the REST API for custom pipelines and BI exports.