Fast Car Band
1978
hip-hopjazzcountry
Conduco voro ter ipsam candidus carcer voro. Cunctatio tergo adhaero color aurum admiratio sub defungo vomer tenax.
artists / #52
1978
Conduco voro ter ipsam candidus carcer voro. Cunctatio tergo adhaero color aurum admiratio sub defungo vomer tenax.
Fast Car Band
1978
curl -sS \
"https://example-data.com/api/v1/artists/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/artists/52"
);
const artist = await res.json();import type { Artist } from "https://example-data.com/types/artists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/artists/52"
);
const artist = (await res.json()) as Artist;import requests
res = requests.get(
"https://example-data.com/api/v1/artists/52"
)
artist = res.json() {
"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"
}