Docs
APISongs

List similar songs

Songs related by shared genres, performing artists and writing credits.

GET
/v1/songs/{songId}/similar

Path Parameters

songId*integer

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/songs/0/similar"
{  "data": {    "by_artist": [      {        "id": -9007199254740991,        "title": "string",        "slug": "string",        "released_at": "string",        "artwork_url": "string",        "artwork_source": "Custom",        "youtube_video_id": "string",        "youtube_video_url": "string",        "artists": [          {            "id": -9007199254740991,            "name": "string"          }        ]      }    ],    "by_others": [      {        "id": -9007199254740991,        "title": "string",        "slug": "string",        "released_at": "string",        "artwork_url": "string",        "artwork_source": "Custom",        "youtube_video_id": "string",        "youtube_video_url": "string",        "artists": [          {            "id": -9007199254740991,            "name": "string"          }        ]      }    ]  }}