Ms. Delores Roberts
2004
reggae
Degenero dolorum voluptatum ademptio. Civis stultus appositus alter terga.
Overview
artists / #31
2004
Degenero dolorum voluptatum ademptio. Civis stultus appositus alter terga.
Ms. Delores Roberts
2004
Request
curl example
curl -sS \ "https://example-data.com/api/v1/artists/31" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/artists/31" ); 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/31"
);
const artist = (await res.json()) as Artist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/artists/31"
)
artist = res.json() Response
{
"id": 31,
"name": "Ms. Delores Roberts",
"slug": "ms-delores-roberts-31",
"bio": "Degenero dolorum voluptatum ademptio. Civis stultus appositus alter terga.",
"genres": [
"reggae"
],
"imageUrl": "https://picsum.photos/seed/artist-31/400/400",
"monthlyListeners": 34579375,
"formedYear": 2004,
"isVerified": false,
"createdAt": "2023-06-30T12:12:28.147Z"
}