Vivianne Osinski
Testimonium pel cubitum vesper enim una absens ago. Coaegresco tergeo custodia adicio via nam totus aggero vespillo sui. Admoveo currus dapifer.
authors / #49
Testimonium pel cubitum vesper enim una absens ago. Coaegresco tergeo custodia adicio via nam totus aggero vespillo sui. Admoveo currus dapifer.
curl -sS \
"https://example-data.com/api/v1/authors/49" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/authors/49"
);
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/49"
);
const author = (await res.json()) as Author;import requests
res = requests.get(
"https://example-data.com/api/v1/authors/49"
)
author = res.json() {
"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"
}