example-data.com

authors / #5

Haruki Murakami

Haruki Murakami

Tametsi crastinus defero. Nisi apto voluptatibus aperte non vitae tantillus venustas averto aduro. Trucido deduco antepono censura crinis aer vox ustulo tego talus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/authors/5"
)
author = res.json()
{
  "id": 5,
  "name": "Haruki Murakami",
  "slug": "haruki-murakami",
  "bio": "Tametsi crastinus defero. Nisi apto voluptatibus aperte non vitae tantillus venustas averto aduro. Trucido deduco antepono censura crinis aer vox ustulo tego talus.",
  "bornYear": 1949,
  "diedYear": null,
  "nationality": "Japanese",
  "genres": [
    "Magical realism",
    "Surrealism"
  ],
  "notableWorks": [
    "Norwegian Wood",
    "Kafka on the Shore",
    "1Q84"
  ],
  "imageUrl": "https://picsum.photos/seed/author-5/600/600",
  "createdAt": "2025-07-07T19:44:33.546Z"
}
Draftbit