Integrate powerful ad intelligence into your own apps and workflows.
The AdPeriscope API is a RESTful service that allows you to access ad intelligence data programmatically. All requests must be made over HTTPS.
https://api.adperiscope.com/v1/
Include your API key in the Authorization
header of every request:
Authorization: Bearer YOUR_API_KEY
You can obtain your API key from your AdPeriscope dashboard.
facebook
, google
, instagram
curl -X GET \"https://api.adperiscope.com/v1/ads/search?q=shoes&platform=facebook\" \\
-H \"Authorization: Bearer YOUR_API_KEY\"
{
"results": [
{
"ad_id": "fb_123456",
"advertiser": "ShoeBrand",
"platform": "facebook",
"creative_url": "https://cdn.adperiscope.com/creatives/fb_123456.jpg",
"headline": "Step into Comfort",
"impressions": 120000,
"spend": 3500.50,
"start_date": "2024-05-01",
"end_date": "2024-05-15"
}
// ...
]
}
import requests
headers = {
\"Authorization\": \"Bearer YOUR_API_KEY\"
}
resp = requests.get(
\"https://api.adperiscope.com/v1/advertisers/12345/ads\",
headers=headers
)
print(resp.json())