Resolve a soundcloud.com URL
API · /soundcloud-api
SoundCloud API
Read SoundCloud in real time — no login or key needed. Full-text search across everything or specifically tracks, users and playlists; resolve any soundcloud.com URL to its object; and fetch a track's detail and comments, a user's profile, their tracks, playlists, likes, followers and following, a playlist's detail, and the trending charts by genre. Tracks, users and playlists are addressed by numeric id (from search/resolve). The public web client_id is resolved automatically and refreshed on expiry; every call is live (no cache) and returns the upstream SoundCloud shape, paginated with limit + offset. 16 endpoints. Built for music discovery, artist and audience analytics and audio content aggregation. A SoundCloud (creator audio) data API — distinct from the Music API (Deezer commercial catalog). No upstream key, no cache.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 630 ms
- Server probes · 24h
- Subscribers
- 3,031
- active
- Total calls
- 90
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 3,200 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 3,200 calls/month
- 2 req/sec
- All 16 read endpoints
- No credit card
Starter
€8.80 /month
- 64,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 64k calls/month
- 8 req/sec
- Search, tracks, users
- Email support
Pro
€27.50 /month
- 320,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 320k calls/month
- 20 req/sec
- Music-analytics pipelines
- Priority support
Mega
€62.00 /month
- 1,580,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 1.58M calls/month
- 50 req/sec
- Audio-platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Guitar Luthier API
Guitar and luthier maths as an API, computed locally and deterministically — the string-tension and fret numbers a player, builder or tech sets an instrument up with. The string-tension endpoint gives the tension a string pulls at pitch from the physics, tension = unit weight × (2 × scale length × frequency)² ÷ 386.4, where the unit weight (lb/in) comes from the string maker's chart — a .010 plain-steel high E on a 25.5-inch scale tuned to 329.6 Hz pulls about 16 lb. The fret-position endpoint gives the distance from the nut to any fret in equal temperament, scale × (1 − 2^(−fret/12)), so the 12th fret sits exactly halfway and the first fret of a 25.5-inch scale is 1.43 inches down — the maths behind every fretboard slot. The set-tension endpoint sums a whole string set into the total load on the neck (a typical six-string runs ~95–120 lb), the number that decides whether a gauge or tuning change needs a truss-rod re-setup. Everything is computed locally and deterministically, so it is instant and private. Ideal for luthier and guitar-tech apps, string-tension and fret-slotting calculators, setup and re-string tools, and music-gear sites. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 compute endpoints. Get unit weights from the string maker's chart. For note↔frequency conversion use a music-theory API.
api.oanor.com/guitar-api
Billboard API
Read the Billboard charts in real time — no key needed. Pull any chart ranked entry-by-entry: The Hot 100, The Billboard 200 (albums), Artist 100, the Billboard Global 200 and Global Excl. U.S., Streaming Songs, Radio Songs, Digital Song Sales, the TikTok Billboard Top 50 and the major genre charts (Country, Rock & Alternative, R&B/Hip-Hop, Rap, Dance/Electronic, Latin, Christian, Pop Airplay). Every entry carries its rank, title, artist, cover image, last-week position, peak position and weeks-on-chart. Pass ?date=YYYY-MM-DD to fetch any historical week going back decades (default: the latest published chart), and ?chart=<slug> to read any Billboard chart by its slug. Live data parsed from the public Billboard chart pages — no cache. 7 endpoints. Built for music dashboards, trend tracking, artist analytics, radio and label tooling. No upstream key, no cache.
api.oanor.com/billboard-api
Classical Music API
The classical-music repertoire as an API — powered by Open Opus, an open catalogue of classical composers and their works. Search composers by name or browse them by musical epoch (Medieval, Renaissance, Baroque, Classical, Romantic and beyond), getting each composer's full name, epoch and birth/death years; then list a composer's works, optionally filtered by genre — orchestral, chamber, keyboard, stage, vocal or opera. From Bach and Mozart to Beethoven's 44 orchestral works, it turns the canon of classical music into a clean search-and-browse API. A classical-music repertoire reference — distinct from commercial music catalogues of tracks, artists and albums. Ideal for classical-music, education, concert-programming, streaming and media applications. Open data from Open Opus (CC-BY-SA / CC0).
api.oanor.com/classical-api
Radio API
Search and explore over 50,000 internet and FM radio stations worldwide — a fast, clean wrapper over Radio Browser with automatic mirror failover. Find stations by name, country, language, genre tag or codec, sort by votes or popularity, fetch a single station by UUID with its stream URL, favicon and metadata, list the most-voted stations, browse all countries with station counts and discover the most popular genre/format tags. Every endpoint accepts input via the query string or the request body and returns lean, predictable JSON with the playable stream URL, bitrate, codec, tags and geo where available. Ideal for radio players, music and media apps, smart-speaker skills and directory features.
api.oanor.com/radio-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for SoundCloud API?
What's the rate limit for SoundCloud API?
How much does SoundCloud API cost?
Can I cancel my subscription anytime?
Is SoundCloud API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/soundcloud-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/soundcloud-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/soundcloud-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/soundcloud-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.