Skip to main content

Get artist detail

GET 

https://api.reccobeats.com/v1/artist/:id

Get artist detail

Request

Path Parameters

    id stringrequired

    Artist ID.

Responses

Get successfully

Schema
    idstring

    Unique id for artist

    namestring

    Artist's name

    hrefstring

    Known spotify URLs for this artist.

import http.client

conn = http.client.HTTPSConnection("api.reccobeats.com")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("GET", "/v1/artist/:id", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://api.reccobeats.com
Parameters
— pathrequired