Marcia Parker
1989
countryjazz
Demoror altus coma. Aestas aduro eveniet. Somniculosus nesciunt tonsor.
Overview
artists / #27
1989
Demoror altus coma. Aestas aduro eveniet. Somniculosus nesciunt tonsor.
Marcia Parker
1989
Request
curl example
curl -sS \ "https://example-data.com/api/v1/artists/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/artists/27" ); 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/27"
);
const artist = (await res.json()) as Artist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/artists/27"
)
artist = res.json() Response
{
"id": 27,
"name": "Marcia Parker",
"slug": "marcia-parker-27",
"bio": "Demoror altus coma. Aestas aduro eveniet. Somniculosus nesciunt tonsor.",
"genres": [
"country",
"jazz"
],
"imageUrl": "https://picsum.photos/seed/artist-27/400/400",
"monthlyListeners": 23042799,
"formedYear": 1989,
"isVerified": false,
"createdAt": "2025-12-18T09:57:10.959Z"
}