## tiktok/videos-popular

`GET /v1/tiktok/videos-popular`

Anonymous public top-four recent-video board. Source-period and lifetime views, organic views, engagement and six-second view rate, with creators. May include sponsored content. Not the full ranking; no likes/comments/shares are supplied.

*Popular TikTok videos*

| Parameter | Required | Description |
| --- | --- | --- |
| `country` | no | US, JP, VN, TH or ID. — e.g. `US` |
| `period` | no | 7 or 30 days; recent-creation board. Source period end is returned. — e.g. `7` |
| `sort` | no | views, engagement or six_second_views. — e.g. `views` |
| `limit` | no | 1–4, default 4. Public anonymous sample only; no pagination. — e.g. `4` |
| `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` |
| `judgments` | no | Add bounded AI labels to eligible returned records (default on). off preserves the original data shape. Unclassified records remain present; labels depend on evidence, time, capacity and the existing request budget. No label surcharge. — e.g. `on` |
| `label` | no | Set none to disable labels; default enables the endpoint’s label set. Equivalent to judgments=off. — e.g. `none` |
| `label_evidence` | no | Include exact supporting sentences and zero-based sentence indexes when a label has validated evidence. No extra charge or change to decisions. — e.g. `1` |
| `exclude` | no | Optionally remove confidently labelled engagement bait. Uncertain and unclassified records stay; removed IDs and an owner-bound recall reference are returned. — e.g. `engagement_bait` |
| `fit` | no | Use goal to replace confidently irrelevant records with recall stubs. Keeps first, last, relevant and uncertain records; preserves order. Full evidence is stored for 24 hours when available. — e.g. `goal` |
| `goal` | no | Required with fit=goal: describe the task in at most 600 characters. Supplied text is task context, never permission to act on posts. — e.g. `Find concrete product complaints` |
| `tokens` | no | Optional soft response target for fit=goal, 256–32000. Safety and evidence retention take priority, so the returned result may exceed it. — e.g. `4000` |
| `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/videos-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": [
    {
      "author": {
        "followers": 0,
        "handle": "example",
        "id": "example",
        "name": "example"
      },
      "caption": "example",
      "cover_url": "https://example.com/example",
      "created_at": "2026-09-01T12:00:00Z",
      "id": "example",
      "metrics": {
        "engagement_rate": 0,
        "lifetime_organic_views": 0,
        "lifetime_views": 0,
        "organic_views": 0,
        "six_second_view_rate": 0,
        "views": 0
      },
      "platform": "example",
      "rank": 0,
      "url": "https://example.com/example"
    }
  ],
  "period": 0,
  "platform": "example",
  "retrieved_at": "2026-09-01T12:00:00Z",
  "sort": "example",
  "source_period_end": "example"
}
```

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