# SocialFetch TikTok Song/Sound Lookup

> SocialFetch TikTok Song/Sound Lookup 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).

Retrieves metadata and details for a TikTok song or sound by its unique ID.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/songs
- 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-song-sound-lookup-e208b7f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VaJt9oY6gassj6Wypkbgq

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-song-sound-lookup-e208b7f6
```

Example prompt: Can you look up the TikTok song with ID 7193827364718341890 and tell me its title, artist, and any other details available?

## When to prefer this

Use this endpoint when you have a specific TikTok song or sound ID (e.g. from a video's music.id field or a TikTok music page URL) and need to retrieve full metadata about that audio track. Prefer this over video-level lookups when the focus is the audio/music itself rather than the video content.

## Known failure modes

- Invalid or malformed song ID returns an error response
- Non-existent song ID returns a not-found error
- Empty or missing ID parameter returns a validation error
- Rate limiting or payment failure returns a 402 or 429 error
- TikTok sound has been removed or made private, resulting in no data

## How this service works

Get details for a TikTok song or sound by id.

## Output

Returns detailed metadata about a TikTok song or sound, including title, artist, duration, play count, and other audio attributes associated with the given sound ID.

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "minLength": 1,
       "description": "TikTok song or sound id. Use the trailing id from a music page URL, or `music.id` from a video lookup."
      }
     }
    }
   },
   "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-song-sound-lookup-e208b7f6/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)
