## tiktok/ads-top

`GET /v1/tiktok/ads-top`

Creative Center popular ad selection. Includes public creative assets and source metrics. Cost bucket is not currency or spend; CTR is returned as supplied.

*Popular TikTok ads*

| Parameter | Required | Description |
| --- | --- | --- |
| `country` | no | Two-letter uppercase country. — e.g. `US` |
| `period` | no | Source window: 7, 30 or 180 days. — e.g. `7` |
| `page` | no | Page number, 1-100. — e.g. `1` |
| `limit` | no | Requested page size, 1–20 (default 20); the source may return fewer. — e.g. `20` |
| `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:** 1 credit 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/tiktok/ads-top" \
  -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
{
  "_warnings": [
    "example"
  ],
  "count": 0,
  "country": "example",
  "has_more": false,
  "items": [
    {
      "brand_name": "example",
      "cost_bucket": 0,
      "ctr": 0,
      "duration_seconds": 0,
      "id": "example",
      "industry_key": "example",
      "likes": 0,
      "objective_key": "example",
      "platform": "example",
      "text": "example",
      "thumbnail_url": "https://example.com/example",
      "video_urls": {}
    }
  ],
  "next_page": 0,
  "page": 0,
  "period": 0
}
```

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