Lexie Schiller
Vomica tero blanditiis. Suscipio verbum hic bardus absens adflicto tyrannus. Maxime volup ciminatio ambulo depono.
Overview
authors / #32
Vomica tero blanditiis. Suscipio verbum hic bardus absens adflicto tyrannus. Maxime volup ciminatio ambulo depono.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/authors/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/authors/32" ); const author = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/authors.d.ts https://example-data.com/types/authors.d.ts
import type { Author } from "./types/authors";
const res = await fetch(
"https://example-data.com/api/v1/authors/32"
);
const author = (await res.json()) as Author; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/authors/32"
)
author = res.json() Response
{
"id": 32,
"name": "Lexie Schiller",
"slug": "lexie-schiller",
"bio": "Vomica tero blanditiis. Suscipio verbum hic bardus absens adflicto tyrannus. Maxime volup ciminatio ambulo depono.",
"bornYear": 1978,
"diedYear": null,
"nationality": "Papua New Guinea",
"genres": [
"Mystery",
"Literary fiction",
"Young adult"
],
"notableWorks": [
"tum ter",
"accusamus calcar velit"
],
"imageUrl": "https://picsum.photos/seed/author-32/600/600",
"createdAt": "2026-01-13T02:52:24.848Z"
}