# Monid TikTok Profile Lookup via x402

> Monid TikTok Profile Lookup via x402 is a paid API for AI agents from x402-proxy.monid.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns public TikTok profile stats (followers, following, likes) for a given username, billed per-call via USDC micropayment on Base.

## Facts

- Endpoint: GET https://x402-proxy.monid.workers.dev/api/social/tiktok/:username
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/monid-tiktok-profile-lookup-via-x402-863561ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V42kFBVZQ2viqYa0sHJCC

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 monid-tiktok-profile-lookup-via-x402-863561ec
```

Example prompt: Can you pull up the TikTok profile stats for @charlidamelio — I want to see their follower count, total likes, and how many accounts they follow?

## When to prefer this

Choose this endpoint when you need lightweight, real-time TikTok public profile metrics (followers, following, likes) for a specific username and are operating in an x402-enabled payment environment using USDC on Base. It is ideal for influencer vetting, competitive benchmarking, or creator analytics pipelines where per-call micropayment billing is acceptable and you do not need post-level engagement data or historical trends.

## Known failure modes

- Username not found or account doesn't exist — likely returns empty or error JSON
- Private or banned TikTok account — data may be unavailable
- Payment failure via x402 — call blocked before data is returned
- Rate limiting or upstream Monid API unavailability — proxy returns error
- Malformed username input — may return null or validation error

## How this service works

Pay-per-call API proxy reselling Monid tools via x402 payments on Base. Each endpoint requires a USDC micropayment before returning data.

## Output

A JSON object containing the TikTok account's username, total follower count, number of accounts they follow, and cumulative likes received across all videos. Example: {"username":"testuser","followers":0,"following":0,"likes":0}.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "username": {
      "type": "string",
      "description": "TikTok username"
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "likes": {
       "type": "number"
      },
      "username": {
       "type": "string"
      },
      "followers": {
       "type": "number"
      },
      "following": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "likes": 0,
  "username": "testuser",
  "followers": 0,
  "following": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/monid-tiktok-profile-lookup-via-x402-863561ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-proxy.monid.workers.dev](https://www.zero.xyz/host/x402-proxy.monid.workers.dev/llms.txt)
