example-data.com

authors / #13

Charles Dickens

Charles Dickens

Antea apud concido versus. Circumvenio eius modi vae. Ipsa ait cohibeo bonus.

Component variants

curl -sS \
  "https://example-data.com/api/v1/authors/13" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/authors/13"
);
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/13"
);
const author = (await res.json()) as Author;
import requests

res = requests.get(
    "https://example-data.com/api/v1/authors/13"
)
author = res.json()
{
  "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"
}
Draftbit