example-data.com
Menu
Browse docs and collections

Overview

authors / #49

Vivianne Osinski

Vivianne Osinski

Testimonium pel cubitum vesper enim una absens ago. Coaegresco tergeo custodia adicio via nam totus aggero vespillo sui. Admoveo currus dapifer.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 49,
  "name": "Vivianne Osinski",
  "slug": "vivianne-osinski",
  "bio": "Testimonium pel cubitum vesper enim una absens ago. Coaegresco tergeo custodia adicio via nam totus aggero vespillo sui. Admoveo currus dapifer.",
  "bornYear": 1975,
  "diedYear": 2020,
  "nationality": "Costa Rica",
  "genres": [
    "Fantasy",
    "Poetry"
  ],
  "notableWorks": [
    "dolores tres agnosco",
    "atavus cerno patrocinor"
  ],
  "imageUrl": "https://picsum.photos/seed/author-49/600/600",
  "createdAt": "2026-02-11T00:28:14.846Z"
}