## google_ads/company-ads

`GET /v1/google_ads/company-ads`

Ads a company runs across Google surfaces: creative ids, formats and transparency-page links. Listing mode by design — drill into one ad with google_ads/ad. Paged by cursor.

*Company ads*

| Parameter | Required | Description |
| --- | --- | --- |
| `advertiser_id` | yes | Advertiser id from google_ads/search-advertisers (or pass domain instead). — e.g. `AR02903092099014459393` |
| `domain` | no | Company domain — alternative to advertiser_id. — e.g. `lululemon.com` |
| `region` | no | Two-letter region code. |
| `platform` | no | youtube, search, shopping, maps or play. |
| `format` | no | text, image or video. |
| `topic` | no | Topic filter. |
| `start_date` | no | YYYY-MM-DD. |
| `end_date` | no | YYYY-MM-DD. |
| `cursor` | no | Opaque cursor from the previous page. |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 4 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/google_ads/company-ads?advertiser_id=AR02903092099014459393" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "dropped": 0,
  "items": [
    {
      "ad_url": "https://example.com/example",
      "advertiser_id": "example",
      "advertiser_name": "example",
      "creative_id": "example",
      "first_shown": "example",
      "format": "example",
      "last_shown": "example",
      "platform": "example"
    }
  ]
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/google_ads/company-ads#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/google_ads/company-ads.json)
