example-data.com
Menu
Browse docs and collections

Overview

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

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/authors/5" \
  -H "Accept: application/json"

JavaScript example

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/authors/5"
)
author = res.json()

Response

{
  "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"
}