Sign in

Google Ads search

documented

Execute a batch GAQL query against the Google Ads data for the given customer.

POST /v23/customers/{customer_id}/googleAds:searchGoogle Ads Serviceno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://googleads.googleapis.com/v23/customers/{{$customer_id}}/googleAds:search" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "developer-token: {{ADS_DEVELOPER_TOKEN}}" \
  -H "login-customer-id: {{$MANAGER_CUSTOMER_ID}}" \
  -d '{"query": "{{$query}}", "pageToken": "{{$page_token}}", "pageSize": {{$limit}} }'