Charles Dickens
Antea apud concido versus. Circumvenio eius modi vae. Ipsa ait cohibeo bonus.
Overview
authors / #13
Antea apud concido versus. Circumvenio eius modi vae. Ipsa ait cohibeo bonus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/authors/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/authors/13" ); 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/13"
);
const author = (await res.json()) as Author; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/authors/13"
)
author = res.json() Response
{
"id": 13,
"name": "Charles Dickens",
"slug": "charles-dickens",
"bio": "Antea apud concido versus. Circumvenio eius modi vae. Ipsa ait cohibeo bonus.",
"bornYear": 1812,
"diedYear": 1870,
"nationality": "English",
"genres": [
"Victorian literature"
],
"notableWorks": [
"A Tale of Two Cities",
"Great Expectations",
"Oliver Twist"
],
"imageUrl": "https://picsum.photos/seed/author-13/600/600",
"createdAt": "2026-01-18T16:44:15.067Z"
}