app.rocksky.song.matchSong

rocksky.app

Documentation

Matches a song against Rocksky’s music database and external metadata providers to resolve the best canonical track, artist, and album

main query

Matches a song against Rocksky’s music database and external metadata providers to resolve the best canonical track, artist, and album

Parameters

artist string Required

The artist of the song to retrieve

isrc string Optional

Optional International Standard Recording Code (ISRC) to anchor the match

mbId string Optional

Optional MusicBrainz recording ID to anchor the match

title string Required

The title of the song to retrieve

Output

Encodingapplication/json
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The artist of the song to retrieve
Optional International Standard Recording Code (ISRC) to anchor the match
Optional MusicBrainz recording ID to anchor the match
The title of the song to retrieve
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "ref": "app.rocksky.song.defs#songViewDetailed",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "title",
      "artist"
    ],
    "properties": {
      "isrc": {
        "type": "string",
        "description": "Optional International Standard Recording Code (ISRC) to anchor the match"
      },
      "mbId": {
        "type": "string",
        "description": "Optional MusicBrainz recording ID to anchor the match"
      },
      "title": {
        "type": "string",
        "description": "The title of the song to retrieve"
      },
      "artist": {
        "type": "string",
        "description": "The artist of the song to retrieve"
      }
    }
  },
  "description": "Matches a song against Rocksky’s music database and external metadata providers to resolve the best canonical track, artist, and album"
}

Lexicon Garden

@