Skip to main content
GET
/
api
/
research
/
profile
cURL
curl --request GET \
  --url https://api.recoupable.dev/api/research/profile
{
  "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

artist
string

Artist name. Required unless id is provided.

id
string

Provider artist ID returned by lookup or search. Required unless artist is provided.

Pattern: ^[A-Za-z0-9][A-Za-z0-9._:-]*$
Example:

"artist_123"

Response

Artist profile

Full artist profile. For longitudinal platform metrics call GET /api/research/metrics.

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.