# SocialFetch TikTok User Search

> SocialFetch TikTok User Search is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Search for TikTok user accounts by keyword query, with optional pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/users/search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Success rate: 0% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-tiktok-user-search-a0c89352
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mjD24JjFo-oONpGIUUQk2

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 socialfetch-tiktok-user-search-a0c89352
```

Example prompt: Search TikTok for user accounts related to 'sustainable fashion' and show me the first page of results.

## When to prefer this

Use this endpoint when you need to discover or enumerate TikTok user accounts matching a keyword — e.g. for influencer research, brand monitoring, or competitor analysis. Prefer this over TikTok hashtag or video search endpoints when the goal is finding profiles/creators rather than content. Use the sibling video search endpoint if you want videos instead of users.

## Known failure modes

- Empty or blank query string returns validation error
- Query exceeding 512 characters is rejected
- Invalid or expired pagination cursor may return an error or reset to first page
- No users found for obscure or misspelled keyword returns empty results
- Rate limiting or payment failure returns 402 or 429 response
- TikTok API outage causes upstream failure

## How this service works

Search TikTok users by keyword.

## Output

A list of TikTok user/creator profiles matching the search keyword, including profile metadata such as usernames, display names, follower counts, and other account details. If the response includes a pagination cursor, it can be passed back as the 'cursor' parameter to retrieve the next page of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "maxLength": 512,
       "minLength": 1,
       "description": "Search query text for TikTok users."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor returned by a previous response."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-tiktok-user-search-a0c89352/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
