Songsterr
Search guitar, bass and drum tabs by artist or title
Songsterr's search endpoint returns JSON listings of songs matching a text pattern, each with a song id, artist, title and the available instrument tracks. No key is required for the search call. Good for looking up whether tabs exist for a given artist before deep-linking into the player.
GET https://www.songsterr.com/api/songs?pattern=coldplay&size=2
[
{
"songId": 434,
"artistId": 38,
"artist": "Coldplay",
"title": "Yellow",
"hasChords": true,
"hasPlayer": true,
"tracks": [
{
"instrumentId": 67,
"instrument": "Baritone Sax",
"views": 4654,
"name": "Chris Martin | Lead Vocals",
"tuning": [
64,
59,
55,
50,
45,
40
],
"hash": "vocals_h3FrugiA"
}
]
}
]curl "https://www.songsterr.com/api/songs?pattern=coldplay&size=2"const res = await fetch("https://www.songsterr.com/api/songs?pattern=coldplay&size=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.songsterr.com/api/songs?pattern=coldplay&size=2")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/songs?pattern=coldplay&size=2PROBEDSearch guitar, bass and drum tabs by artist or title
/songs?limit=5Songs — documented GET route.
/songs?page=1Songs — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Songsterr: common questions
Is Songsterr free to use?
Yes — Songsterr is a free media API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Songsterr need an API key?
No — Songsterr needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Songsterr from the browser?
Not directly — Songsterr doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Songsterr up right now?
As of our last scheduled check, Songsterr is healthy with 99.02% uptime over 90 days and a 803 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.