# User videos

Public creator videos with upstream pagination and latest/popular ordering.

- Platform: [TikTok](https://docs.upscrape.com/docs/platforms/tiktok)
- Capability ID: `tiktok.user.videos`
- Cost: 1 credit per request
- Maximum runtime: 45 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "count": 5,
    "handle": "tiktok"
  },
  "capability": "tiktok.user.videos"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `count` | `integer` | No | Upstream page-size hint; TikTok can return more or fewer records. |
| `cursor` | `integer` | No | Continuation cursor returned by a previous request. |
| `handle` | `string` | No | Handle supplied for this request. |
| `sec_uid` | `string` | No | Sec uid supplied for this request. |
| `sort_by` | `string` | No | Sort by supplied for this request. Allowed values: `latest`, `popular`. |
| `target_user_id` | `string` | No | Target user identifier. |

### Example input

```json
{
  "count": 5,
  "handle": "tiktok"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

No committed sample output is available for this capability.


## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
