# StableSocial TikTok Profile Videos

> StableSocial TikTok Profile Videos is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Fetches a paginated list of videos from a TikTok user's profile by handle or user ID

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/profile/videos
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-tiktok-profile-videos-0a8264bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-bSuJlgwU7xA7MdxwWCOH

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablesocial-tiktok-profile-videos-0a8264bf -d '<json body>'
```

Example prompt: Pull the latest videos from TikTok creator @charlidamelio using a US proxy, sorted by latest, and give me the trimmed version of the results.

## When to prefer this

Use this endpoint when you need programmatic, pay-per-request access to a TikTok user's video feed without setting up OAuth, API credentials, or subscriptions. Ideal for one-off scraping, influencer research, competitive analysis, or building pipelines that process TikTok creator content at low volume. Prefer the user_id parameter over handle when available for faster responses. Choose this over browser automation or self-hosted scrapers when you want a managed, reliable extraction with no infrastructure overhead.

## Known failure modes

- Invalid or non-existent TikTok handle returns an error or empty result
- Missing both handle and user_id causes a validation error
- Invalid max_cursor value may return an error or duplicate results
- Unsupported region code may fall back to US proxy or return an error
- Rate limiting or upstream TikTok blocks may cause temporary failures
- Payment failure (insufficient USDC) prevents the request from being processed

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of TikTok videos from the specified user's profile, including video metadata such as IDs, descriptions, view counts, like counts, share counts, thumbnails, and timestamps. Also includes a max_cursor value for fetching the next page of results. When trim=true, a reduced subset of fields is returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true for a trimmed down version of the response"
  },
  "handle": {
   "type": "string",
   "minLength": 1,
   "description": "TikTok handle"
  },
  "region": {
   "type": "string",
   "description": "Region (Country) you want the proxy in. Defaults to US."
  },
  "sort_by": {
   "enum": [
    "latest",
    "popular"
   ],
   "type": "string",
   "description": "What to sort by"
  },
  "user_id": {
   "type": "string",
   "description": "TikTok user id. Use this for faster responses."
  },
  "max_cursor": {
   "type": "string",
   "description": "Cursor to get more videos. Get 'max_cursor' from previous response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-profile-videos-0a8264bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
