# StableSocial Spotify Track Scraper

> StableSocial Spotify Track Scraper is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Fetches detailed metadata for a Spotify track by track ID or URL

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/spotify/track
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-spotify-track-scraper-d36159e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YJD4eqPwQhjpuPbXPa8E7

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 stablesocial-spotify-track-scraper-d36159e4 -d '<json body>'
```

Example prompt: Can you pull the full track details for this Spotify song — https://open.spotify.com/track/3n3Ppam7vgaVa1iaRUIOKE — I want to see the artist, album, duration, and any stats available?

## When to prefer this

Use this endpoint when you need to programmatically retrieve metadata for a specific Spotify track by ID or URL without requiring Spotify API credentials. Ideal for AI agents enriching music data, creator analytics tools, playlist management systems, or any workflow that needs pay-per-request Spotify track data without managing OAuth tokens.

## Known failure modes

- Invalid or malformed Spotify track ID returns an error response
- Track URL that is not a Spotify track URL (e.g. playlist or album URL) may fail or return unexpected results
- Private or region-restricted tracks may return incomplete or no data
- Network or scraping errors from Spotify's platform may cause intermittent failures
- Neither id nor url provided results in a validation error

## How this service works

Scrape Creators · Spotify — Track

## Output

Returns structured metadata for the specified Spotify track, including song title, artist(s), album name, release date, track duration, and available streaming stats such as play count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Spotify track id. If you'd prefer to use the URL instead, you can use the url parameter instead."
  },
  "url": {
   "type": "string",
   "description": "Spotify song URL. If you'd prefer to use the id instead, you can use the id parameter instead."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-spotify-track-scraper-d36159e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
