cURL
curl --request GET \
--url https://api.recoupable.dev/api/research/milestonesimport requests
url = "https://api.recoupable.dev/api/research/milestones"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.recoupable.dev/api/research/milestones', 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/milestones",
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/milestones"
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/milestones")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recoupable.dev/api/research/milestones")
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",
"milestones": [
{
"source": "<string>",
"activity_text": "<string>",
"activity_type": "<string>",
"activity_date": "2026-06-04",
"activity_url": "<string>",
"activity_avatar": "<string>",
"activity_tier": 123,
"track_info": {
"title": "<string>",
"avatar": "<string>",
"release_date": "<string>",
"site_url": "<string>",
"artists": [
{
"name": "<string>"
}
]
}
}
]
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Request failed with status 501"
}Metrics & insights
Milestones
Get an artist’s activity feed — playlist adds, chart entries, and other notable events. Each milestone includes a date, summary, platform, track name, and star rating.
GET
/
api
/
research
/
milestones
cURL
curl --request GET \
--url https://api.recoupable.dev/api/research/milestonesimport requests
url = "https://api.recoupable.dev/api/research/milestones"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.recoupable.dev/api/research/milestones', 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/milestones",
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/milestones"
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/milestones")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recoupable.dev/api/research/milestones")
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",
"milestones": [
{
"source": "<string>",
"activity_text": "<string>",
"activity_type": "<string>",
"activity_date": "2026-06-04",
"activity_url": "<string>",
"activity_avatar": "<string>",
"activity_tier": 123,
"track_info": {
"title": "<string>",
"avatar": "<string>",
"release_date": "<string>",
"site_url": "<string>",
"artists": [
{
"name": "<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"
Was this page helpful?
⌘I
