# StableSocial SoundCloud Artist Tracks Scraper

> StableSocial SoundCloud Artist Tracks 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-15).

Scrapes and returns the list of tracks uploaded by a SoundCloud artist, given their profile URL or handle, with cursor-based pagination support.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/soundcloud/artist/tracks
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-soundcloud-artist-tracks-scraper-e24dd2d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hJ4BHpOwCQc5mrWd3YdMr

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-soundcloud-artist-tracks-scraper-e24dd2d9 -d '<json body>'
```

Example prompt: Can you pull all the tracks from the SoundCloud artist at soundcloud.com/flume so I can see their full upload history?

## When to prefer this

Use this endpoint when you need programmatic, pay-per-request access to a SoundCloud artist's track list without managing your own scraping infrastructure. Prefer this over direct SoundCloud API access when you want low-friction, no-subscription data retrieval, or when the official API is unavailable. Best suited for one-off lookups, agent workflows, or monitoring tasks where full discography data is needed.

## Known failure modes

- Invalid or non-existent SoundCloud artist URL or handle returns an error or empty result
- Rate limiting or SoundCloud anti-scraping measures may cause failures
- Expired or invalid pagination cursor results in an error
- Private or restricted artist profiles may return no tracks
- Network timeouts or upstream SoundCloud unavailability cause request failures

## How this service works

Scrape Creators · SoundCloud — Artist Tracks

## Output

Returns a list of tracks associated with the specified SoundCloud artist, including track metadata (titles, URLs, play counts, etc.) and a cursor value for fetching additional pages of results if the artist has more tracks than returned in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "SoundCloud artist tracks URL. If you'd prefer to use the handle instead, you can use the handle parameter instead."
  },
  "cursor": {
   "type": "string",
   "description": "Cursor to get more tracks. Get 'cursor' from previous response."
  },
  "handle": {
   "type": "string",
   "description": "SoundCloud artist handle. If you'd prefer to use the URL instead, you can use the url parameter instead."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-soundcloud-artist-tracks-scraper-e24dd2d9/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)
