example-data.com
Menu
Browse docs and collections

Overview

authors / #40

Katrina Osinski

Katrina Osinski

Cur ex sub vis spoliatio viscus. Bibo thermae aranea bellum viduo. Aspernatur aequitas angelus.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 40,
  "name": "Katrina Osinski",
  "slug": "katrina-osinski",
  "bio": "Cur ex sub vis spoliatio viscus. Bibo thermae aranea bellum viduo. Aspernatur aequitas angelus.",
  "bornYear": 1954,
  "diedYear": 1995,
  "nationality": "Singapore",
  "genres": [
    "Drama"
  ],
  "notableWorks": [
    "unus aliqua beatus colligo suscipio",
    "calculus correptius optio totus ager"
  ],
  "imageUrl": "https://picsum.photos/seed/author-40/600/600",
  "createdAt": "2025-01-21T00:10:14.257Z"
}