Fred Schinner
1965
jazzhip-hop
Volaticus bellum undique una patior. Quae utpote vere patior.
artists / #22
1965
Volaticus bellum undique una patior. Quae utpote vere patior.
Fred Schinner
1965
curl -sS \
"https://example-data.com/api/v1/artists/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/artists/22"
);
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/22"
);
const artist = (await res.json()) as Artist;import requests
res = requests.get(
"https://example-data.com/api/v1/artists/22"
)
artist = res.json() {
"id": 22,
"name": "Fred Schinner",
"slug": "fred-schinner-22",
"bio": "Volaticus bellum undique una patior. Quae utpote vere patior.",
"genres": [
"jazz",
"hip-hop"
],
"imageUrl": "https://picsum.photos/seed/artist-22/400/400",
"monthlyListeners": 16520205,
"formedYear": 1965,
"isVerified": true,
"createdAt": "2021-10-11T08:56:03.030Z"
}