# SocialFetch TikTok Trending Feed

> SocialFetch TikTok Trending Feed 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).

Returns a list of currently trending TikTok posts for a specified country/region.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/feed/trending
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-tiktok-trending-feed-fa954500
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t9E9IPCa1aKoAQlUwEG-_

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-trending-feed-fa954500
```

Example prompt: What's trending on TikTok right now in the US? Pull the current trending feed for me.

## When to prefer this

Use this endpoint when you need real-time trending TikTok content scoped to a specific country. Prefer it over generic social media scrapers when TikTok-specific trending data is the explicit goal, especially for regional market research, trend monitoring dashboards, or content strategy tools that need live TikTok feed data by geography.

## Known failure modes

- Missing or invalid 'region' parameter returns a validation error
- Unsupported or unrecognized country code may return empty results or an error
- TikTok API availability issues may cause upstream failures
- Payment failure (x402) prevents the request from being processed
- Rate limiting may throttle high-frequency callers

## How this service works

List currently trending TikTok posts for a region.

## Output

A list of currently trending TikTok posts for the requested region, including post metadata such as video details, creator info, engagement signals, and sound/audio references. When trim is enabled, the response is a lighter payload with fewer optional fields.

## 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": [
      "region"
     ],
     "properties": {
      "trim": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, requests a smaller response with fewer optional fields."
      },
      "region": {
       "type": "string",
       "description": "Two-letter ISO 3166-1 country code for the request."
      }
     }
    }
   },
   "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-trending-feed-fa954500/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)
