# SocialFetch TikTok Music Clip Videos Lister

> SocialFetch TikTok Music Clip Videos Lister 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-15).

Lists TikTok videos that use a specific music clip, identified by clip ID, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/music/:clipId/videos
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-tiktok-music-clip-videos-lister-d1edc037
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C2ey1JgZr6X9idHW8sqCr

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-music-clip-videos-lister-d1edc037
```

Example prompt: Show me all TikTok videos that are using the music clip with ID 7041099772978358022 — and if there are more results, use the pagination cursor to get the next page.

## When to prefer this

Use this endpoint when you need to discover all TikTok videos associated with a specific music clip or sound ID, such as for trend analysis, influencer research, or content monitoring around a particular audio track. Prefer this over general TikTok search when you have a specific clip ID and want a comprehensive, paginated list of videos using that exact sound.

## Known failure modes

- Invalid or non-existent clipId returns an empty list or 404 error
- Malformed clipId (empty string) rejected by schema validation
- Expired or invalid pagination cursor returns an error or resets to first page
- Rate limiting or payment failure returns 402 or 429 status
- TikTok API unavailability causes upstream timeout or 503 error

## How this service works

List TikTok videos that use a specific music clip.

## Output

A list of TikTok videos associated with the specified music clip ID, including video metadata such as video IDs, creator info, and engagement stats, along with a pagination cursor for fetching additional pages 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "clipId"
     ],
     "properties": {
      "clipId": {
       "type": "string",
       "minLength": 1,
       "description": "TikTok music clip id whose videos should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "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-music-clip-videos-lister-d1edc037/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)
