Giovani Gutkowski-Adams
Uxor tepesco temperantia. Nobis verus degero sodalitas sequi celo pecto. Exercitationem soleo vereor absconditus.
authors / #43
Uxor tepesco temperantia. Nobis verus degero sodalitas sequi celo pecto. Exercitationem soleo vereor absconditus.
curl -sS \
"https://example-data.com/api/v1/authors/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/authors/43"
);
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/43"
);
const author = (await res.json()) as Author;import requests
res = requests.get(
"https://example-data.com/api/v1/authors/43"
)
author = res.json() {
"id": 43,
"name": "Giovani Gutkowski-Adams",
"slug": "giovani-gutkowski-adams",
"bio": "Uxor tepesco temperantia. Nobis verus degero sodalitas sequi celo pecto. Exercitationem soleo vereor absconditus.",
"bornYear": 1939,
"diedYear": null,
"nationality": "Malta",
"genres": [
"Science fiction",
"Poetry"
],
"notableWorks": [
"accusator quae substantia vereor",
"denuncio theca nisi"
],
"imageUrl": "https://picsum.photos/seed/author-43/600/600",
"createdAt": "2024-11-25T16:08:45.328Z"
}