DiskografDocs
APIArtists

Get namesake hints

For artists whose names collide, a short hint that tells them apart — the editor-supplied disambiguator when one exists, otherwise the artist's most-credited role and best-known song. Only returns rows for ids that actually collide.

GET
/v1/artists/namesake-hints

Query Parameters

ids*string

Between 1 and 200 artist ids. Repeat the parameter or comma-separate.

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/artists/namesake-hints?ids=string"
{  "data": [    {      "id": -9007199254740991,      "disambiguator": "string",      "role": "string",      "song": "string",      "song_year": -9007199254740991    }  ],  "meta": {    "total": -9007199254740991,    "limit": -9007199254740991,    "offset": -9007199254740991  }}