# StableSocial Spotify Artist Scraper

> StableSocial Spotify Artist 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).

Scrapes and returns profile and metadata for a Spotify artist by artist ID or URL

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/spotify/artist
- 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-artist-scraper-7741e590
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n27t4HyadxXnHVrvPyk_d

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-artist-scraper-7741e590 -d '<json body>'
```

Example prompt: Pull the Spotify artist profile for Taylor Swift — use her Spotify artist URL https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02 and give me her follower count, genres, and popularity score.

## When to prefer this

Choose this endpoint when you need to programmatically fetch Spotify artist profile data — follower counts, genres, popularity — without managing Spotify API credentials or OAuth. Ideal for enriching music databases, vetting artists for partnerships, or monitoring creator metrics at scale. Pay-per-call pricing makes it cost-effective for infrequent or variable-volume use cases.

## Known failure modes

- Invalid or non-existent artist ID returns an error or empty result
- Artist URL that is malformed or not a valid Spotify artist URL causes a parsing failure
- Spotify rate limiting or blocking may result in scrape failures
- Neither id nor url provided results in a missing required parameter error
- Private or removed artists may return no data

## How this service works

Scrape Creators · Spotify — Artist

## Output

Returns scraped artist profile data from Spotify including artist name, follower count, popularity score, genre tags, verified status, image URLs, and other publicly available profile metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Spotify artist id. If you'd prefer to use the URL instead, you can use the url parameter instead."
  },
  "url": {
   "type": "string",
   "description": "Spotify artist 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-artist-scraper-7741e590/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)
