Platform · Web
Organic web search and the Ads Transparency Center.
- Endpoints
- 4
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/google/search | SearchResult[] | 1 |
| GET /v1/google/ads | Ad[] | 1 |
| GET /v1/google/ad | Ad | 1 |
| GET /v1/google/advertisers/search | Advertiser[] | 1 |
Core
Search
1 creditSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/google/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=unified social data api"Ad libraries
An advertiser's ads
1 creditEvery ad an advertiser is running or ran.
| advertiser | required | Advertiser name, page id or domain. |
| country | optional | ISO country code. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/google/ads \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "advertiser=nike.com"Ad
1 creditOne ad from the ad library.
| id | required | Ad id or ad-library URL. |
curl -G https://api.crawlfeed.dev/v1/google/ad \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Search advertisers
1 creditFind an advertiser, and the id its ads are filed under.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/google/advertisers/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=unified social data api"Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.