Fast Car Band
1978
hip-hopjazzcountry
Conduco voro ter ipsam candidus carcer voro. Cunctatio tergo adhaero color aurum admiratio sub defungo vomer tenax.
Overview
artists / #52
1978
Conduco voro ter ipsam candidus carcer voro. Cunctatio tergo adhaero color aurum admiratio sub defungo vomer tenax.
Fast Car Band
1978
Request
curl example
curl -sS \ "https://example-data.com/api/v1/artists/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/artists/52" ); const artist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/artists.d.ts https://example-data.com/types/artists.d.ts
import type { Artist } from "./types/artists";
const res = await fetch(
"https://example-data.com/api/v1/artists/52"
);
const artist = (await res.json()) as Artist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/artists/52"
)
artist = res.json() Response
{
"id": 52,
"name": "Fast Car Band",
"slug": "fast-car-band-52",
"bio": "Conduco voro ter ipsam candidus carcer voro. Cunctatio tergo adhaero color aurum admiratio sub defungo vomer tenax.",
"genres": [
"hip-hop",
"jazz",
"country"
],
"imageUrl": "https://picsum.photos/seed/artist-52/400/400",
"monthlyListeners": 6846464,
"formedYear": 1978,
"isVerified": false,
"createdAt": "2021-12-12T01:55:01.112Z"
}