Amie Wehner
Quo vito aeger. Decipio utor eligendi quos aer nulla strues. Tamisium deserunt vociferor alveus.
Overview
authors / #27
Quo vito aeger. Decipio utor eligendi quos aer nulla strues. Tamisium deserunt vociferor alveus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/authors/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/authors/27" ); 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/27"
);
const author = (await res.json()) as Author; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/authors/27"
)
author = res.json() Response
{
"id": 27,
"name": "Amie Wehner",
"slug": "amie-wehner",
"bio": "Quo vito aeger. Decipio utor eligendi quos aer nulla strues. Tamisium deserunt vociferor alveus.",
"bornYear": 1910,
"diedYear": null,
"nationality": "Mauritius",
"genres": [
"Drama"
],
"notableWorks": [
"adinventitias angulus adicio defluo",
"illo repellat reprehenderit vesco termes"
],
"imageUrl": "https://picsum.photos/seed/author-27/600/600",
"createdAt": "2025-09-24T03:44:07.220Z"
}