## tiktok/profile-videos

`GET /v1/tiktok/profile-videos`

Recent videos for a TikTok account, newest first, with per-video stats. Paged by cursor.

*Profile videos*

| Parameter | Required | Description |
| --- | --- | --- |
| `handle` | yes | TikTok username without the @. — e.g. `nasa` |
| `cursor` | no | Opaque cursor from the previous page. |
| `user_id` | no | Numeric TikTok user id, kept as a string. Optional alongside the required handle; can speed up the primary source. This is not a sec_uid. — e.g. `6659752019493208069` |
| `sort_by` | no | latest (newest first, the default) or popular. latest is served by every source; popular is served by the source that can rank by popularity, so a continuation stays on that source. — e.g. `latest` |
| `region` | no | Two-letter country code for the source request location. It can affect availability and ranking; it does not filter creators by residence or audience country. Keep it unchanged when continuing. — e.g. `GB` |
| `max_cursor` | no | Primary-source alias for cursor. Use the previous response cursor unchanged. The canonical cursor parameter takes precedence when both are supplied. — e.g. `1734562353000` |
| `trim` | no | Boolean: true asks the primary source for its trimmed payload; false asks for the full source payload. The public response remains normalized; this is not an instruction to truncate captions. — e.g. `false` |
| `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` |

**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/profile-videos?handle=nasa" \
  -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
{
  "items": [
    {
      "id": "7350000000000000002",
      "url": "https://www.tiktok.com/@example_creator/video/7350000000000000002",
      "caption": "A desk setup",
      "created_at": "2026-09-01T12:00:00.000Z",
      "duration_s": 15,
      "stats": {
        "plays": 1200,
        "likes": 100,
        "comments": 12,
        "shares": null,
        "saves": 8
      }
    }
  ],
  "cursor": null,
  "has_more": null
}
```

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