# StableSocial TikTok Profile Lookup

> StableSocial TikTok Profile Lookup 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 detailed profile information for a given TikTok account by username or identifier.

## Facts

- Endpoint: POST https://stablesocial.dev/api/tiktok/profile
- 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-dev-4e93ae28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8F_D_YCnjRw968G6Sw6tl

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-dev-4e93ae28 -d '<json body>'
```

Example prompt: Pull the TikTok profile details for the account @charlidamelio — I want their follower count, bio, and whether they're verified.

## When to prefer this

Use this endpoint when you need structured TikTok profile metadata for a specific known username, such as for influencer vetting, audience research, or social media monitoring. Prefer this over search endpoints when you already know the exact account handle. It is distinct from the Posts or Followers endpoints, which return content and follower lists rather than profile-level data.

## Known failure modes

- Account not found or username does not exist — returns error or empty result
- Private or suspended TikTok account — limited or no data returned
- Invalid username format — returns validation error
- Payment not processed correctly via x402 — request rejected
- Rate limiting or API quota exceeded — request throttled or rejected
- TikTok API changes or blocks — upstream data unavailable

## 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 public TikTok profile data for the specified account, including display name, username, follower count, following count, post count, bio/description, profile picture URL, and verified status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "handle": {
   "type": "string",
   "minLength": 1,
   "description": "TikTok username (without @)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "jobId": "clx0000000000000000000000",
  "token": "eyJ...",
  "status": "pending",
  "pollUrl": "https://stablesocial.dev/api/jobs/clx0000000000000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-dev-4e93ae28/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)
