Agatha Christie
Adnuo varius amaritudo. Surgo ascit colo ipsa incidunt spero voluptatem sordeo ciminatio provident. Vester aggero cupio defero officia vigor confido caries spoliatio.
authors / #18
Adnuo varius amaritudo. Surgo ascit colo ipsa incidunt spero voluptatem sordeo ciminatio provident. Vester aggero cupio defero officia vigor confido caries spoliatio.
curl -sS \
"https://example-data.com/api/v1/authors/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/authors/18"
);
const author = await res.json();import type { Author } from "https://example-data.com/types/authors.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/authors/18"
);
const author = (await res.json()) as Author;import requests
res = requests.get(
"https://example-data.com/api/v1/authors/18"
)
author = res.json() {
"id": 18,
"name": "Agatha Christie",
"slug": "agatha-christie",
"bio": "Adnuo varius amaritudo. Surgo ascit colo ipsa incidunt spero voluptatem sordeo ciminatio provident. Vester aggero cupio defero officia vigor confido caries spoliatio.",
"bornYear": 1890,
"diedYear": 1976,
"nationality": "English",
"genres": [
"Mystery"
],
"notableWorks": [
"Murder on the Orient Express",
"And Then There Were None"
],
"imageUrl": "https://picsum.photos/seed/author-18/600/600",
"createdAt": "2025-07-20T00:35:39.956Z"
}