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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
Songsterr is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.