Google Ads Advertiser Info API Documentation

Google Ads Advertiser Info API allows you to retrieve additional details about advertisers displayed in Google Search Ads, including advertiser name, location, and ad transparency links. This API is complementary to the Google Search API and requires an advertiser_info_token obtained from Google Search results.

It is accessible via the /api/v1/search?engine=google_ads_advertiser_info endpoint.

API Parameters

Search Query

  • Name
    advertiser_info_token
    Required
    Required
    Description

    To retrieve its value, follow these steps

    • Perform a search using our Google Search API.
    • Inspect and find the advertiser_info_token for each ad inside the ads block.
    • Use that token with this engine to retrieve ad advertiser info.

Engine

  • Name
    engine
    Required
    Required
    Description

    The engine parameter specifies the engine to use for retrieving data. It must be set to google_ads_advertiser_info.

Api Key

  • Name
    api_key
    Required
    Required
    Description

    The api_key authenticates your requests. You must include it either as a query parameter, like https://www.searchapi.io/api/v1/search?api_key=YOUR_API_KEY, or in the Authorization header as Bearer YOUR_API_KEY.

API Examples

Full Response

Full Response
GET
https://www.searchapi.io/api/v1/search?advertiser_info_token=QVUyaHhaMzhfTFBjTHUzRnZCODBNcDhpMUNYWU5xck9md3JYYkJ4MVM5a2k1ak5VNXBNaTRGdWVOSkR1VnJMNDhndXJHX1JtUmRfOFJMWGZMX2Izd3k0Vm84TXEtUVR3X1hFcWRwUmFPamRESW1qVEZBOEJDYTI2NVE4M3Q3MmFkNmdtSFpsR1p1b0pOa1JDMm9KWTZxbTNMVU5Ka2xRS1FyVnVQWmpqaFpXRXc2dU1PREJnZ1NpUm5KSVFkeGdrYzdSUVg0VjJWeUVJMFZrcE1iNzB4MlB1NWNYZG9LRHVXWXRWSXBUQ1pGWG1iUVl6cjRlTHloTDVDNW1QcElZeUVxSXNVcm1L&engine=google_ads_advertiser_info
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "google_ads_advertiser_info",
  "advertiser_info_token": "QVUyaHhaMzhfTFBjTHUzRnZCODBNcDhpMUNYWU5xck9md3JYYkJ4MVM5a2k1ak5VNXBNaTRGdWVOSkR1VnJMNDhndXJHX1JtUmRfOFJMWGZMX2Izd3k0Vm84TXEtUVR3X1hFcWRwUmFPamRESW1qVEZBOEJDYTI2NVE4M3Q3MmFkNmdtSFpsR1p1b0pOa1JDMm9KWTZxbTNMVU5Ka2xRS1FyVnVQWmpqaFpXRXc2dU1PREJnZ1NpUm5KSVFkeGdrYzdSUVg0VjJWeUVJMFZrcE1iNzB4MlB1NWNYZG9LRHVXWXRWSXBUQ1pGWG1iUVl6cjRlTHloTDVDNW1QcElZeUVxSXNVcm1L"
}

response = requests.get(url, params=params)
print(response.text)
Response
{
  "advertiser_info": {
    "id": "AR03088898594762129409",
    "name": "Argus Labs Limited",
    "location": "United Kingdom",
    "link": "https://adstransparency.google.com/advertiser/AR03088898594762129409"
  }
}