cURL
curl --request GET \
--url https://api.recoupable.dev/api/research/profileimport requests
url = "https://api.recoupable.dev/api/research/profile"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.recoupable.dev/api/research/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.recoupable.dev/api/research/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.recoupable.dev/api/research/profile"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.recoupable.dev/api/research/profile")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recoupable.dev/api/research/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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>"
}
]
}
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Request failed with status 501"
}Artist discovery
Artist Profile
Get a full artist profile — bio, genres, social URLs, label, career stage, and basic metrics.
GET
/
api
/
research
/
profile
cURL
curl --request GET \
--url https://api.recoupable.dev/api/research/profileimport requests
url = "https://api.recoupable.dev/api/research/profile"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.recoupable.dev/api/research/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.recoupable.dev/api/research/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.recoupable.dev/api/research/profile"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.recoupable.dev/api/research/profile")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recoupable.dev/api/research/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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>"
}
]
}
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Request failed with status 501"
}Query Parameters
Artist name. Required unless id is provided.
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.
Was this page helpful?
⌘I
