Ad intelligence
See what a competitor is advertising. Search the public ad libraries, list an advertiser’s ads and read each creative, in one Ad shape across platforms.
The recipe
The calls, in order. Tap a platform to see its endpoint and parameters.
- 1
- 2
- 3
- 4
What it costs
6credits
One competitor on Facebook and Google, 2 pages of ads each.
Calculated from the live price list. Failed calls are refunded.
In code
javascript
const ads = await fetch(`https://api.crawlfeed.dev/v1/facebook/ads/search?q=${encodeURIComponent('running shoes')}`, { headers: { Authorization: `Bearer ${process.env.CRAWLFEED_KEY}` } }).then((r) => r.json());
for (const ad of ads.data) {
console.log(ad.advertiser.name, ad.headline, ad.is_active, ad.landing_url);
}Questions
Which ad libraries are covered?
The public ad libraries the recipe lists, resolved from the live catalogue.