get_related_artists
ActiveTool of FreqBlog Music Metadata
Artists related to a seed artist — the drop-in for Spotify's removed GET /v1/artists/{id}/related-artists. No artist graph exists, so we derive one: build the seed artist's track-vector centroid, take its nearest catalogue tracks, aggregate by artist (each scored on its top-3 track similarities so a prolific artist can't dominate) plus a same-genre lift and a cross-genre penalty. Returns `artist`, `count`, and `related` (each {artist_name, score, match_count, sample_track_id}). Pass a sample_track_id straight to get_audio_features or suggest_next_track. Costs 2 quota units.
Parameters schema
{
"type": "object",
"title": "get_related_artistsArguments",
"required": [
"artist"
],
"properties": {
"limit": {
"type": "integer",
"title": "Limit",
"default": 20,
"maximum": 50,
"minimum": 1,
"description": "Number of related artists to return (default 20)."
},
"artist": {
"type": "string",
"title": "Artist",
"maxLength": 200,
"minLength": 1,
"description": "Seed artist name (as it appears in the catalog; case-insensitive)."
}
}
}Parent server
FreqBlog Music Metadata
1/7 registries