Skip to main content
GET
/
api
/
research
/
lookup
cURL
curl --request GET \
  --url https://api.recoupable.dev/api/research/lookup
{
  "status": "success",
  "result": "success",
  "message": "Data Retrieved.",
  "artist_info": {
    "name": "<string>",
    "avatar": "<string>",
    "site_url": "<string>",
    "country": "<string>",
    "bio": "<string>",
    "genres": [
      "<string>"
    ],
    "links": [
      {
        "source": "<string>",
        "external_id": "<string>",
        "url": "<string>",
        "isrc": "<string>"
      }
    ],
    "related_artists": [
      {
        "id": "wjcgfd9i",
        "name": "Drake",
        "avatar": "<string>",
        "site_url": "<string>"
      }
    ]
  }
}

Query Parameters

url
string

Spotify artist URL. Required unless spotifyId is provided.

spotifyId
string

Spotify artist ID. Required unless url is provided.

Example:

"3TVXtAsR1Inumwj472S9r4"

Response

Artist profile matching the platform URL

Artist resolved from a Spotify URL or ID.

status
string
Example:

"success"

result
string
Example:

"success"

message
string
Example:

"Data Retrieved."

artist_info
object

Full artist record — identity, bio, genres, platform links, and related artists.