Skip to main content
POST
/
api
/
google
/
advertisers
/google/advertisers
curl --request POST \
  --url https://api.anysite.io/api/google/advertisers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "advertiser": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@google_advertiser",
    "name": "<string>",
    "legal_name": "<string>",
    "country": "<string>",
    "is_verified": false,
    "ad_count": 123,
    "active_regions": []
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
advertiser
string
required

Advertiser URL (https://adstransparency.google.com/advertiser/<AR...>?...) or raw advertiser ID (AR...).

Minimum string length: 1
Example:

"https://adstransparency.google.com/advertiser/AR16735076323512287233?region=US"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
topic
enum<string>
required
Available options:
commercial,
political
@type
string
default:@google_advertiser
name
string | null
country
string | null
is_verified
boolean
default:false
ad_count
integer | null
active_regions
string[]