## tiktok/hashtags-popular

`GET /v1/tiktok/hashtags-popular`

Anonymous public top-three board by country, window and optional industry. Ranked tags, source posts/views and relative popularity curves. Not the full ranking or live activity; no pagination.

*Popular TikTok hashtags*

| Parameter | Required | Description |
| --- | --- | --- |
| `country` | no | Country: US, FR, DE, IT, ES, GB, AR, AU, BR, CA, CO, EG, ID, IL, JP, KR, MY, MX, PH, SA, SG, ZA, TW, TH, TR, AE or VN. — e.g. `US` |
| `period` | no | 7, 30 or 90 days; default 7. — e.g. `7` |
| `industry` | no | Optional Creative Center industry ID: 10000000000 education; 11000000000 vehicles; 12000000000 baby/kids; 14000000000 beauty; 15000000000 tech; 17000000000 travel; 18000000000 household; 19000000000 pets; 21000000000 home improvement; 22000000000 apparel; 23000000000 news/entertainment; 25000000000 games; 27000000000 food; 28000000000 sports; 29000000000 health. — e.g. `14000000000` |
| `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` |
| `countryCode` | no | Compatibility alias for country. The canonical parameter takes precedence if both are supplied. — e.g. `US` |

**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/hashtags-popular" \
  -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",
  "coverage": "example",
  "has_more": false,
  "items": [
    {
      "id": "example",
      "industry_ids": [
        "example"
      ],
      "name": "example",
      "popularity_curve": [
        {}
      ],
      "posts": 0,
      "rank": 0,
      "top_creators": [
        {}
      ],
      "views": 0
    }
  ],
  "period": 0,
  "platform": "example",
  "retrieved_at": "2026-09-01T12:00:00Z"
}
```

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