example-data.com

authors / #17

Stephen King

Stephen King

Soleo tenus sui cursim celo acerbitas vir. Coniecto carpo provident hic ver vigilo. Consequuntur caelestis nam tubineus itaque vesper ubi.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/authors/17"
)
author = res.json()
{
  "id": 17,
  "name": "Stephen King",
  "slug": "stephen-king",
  "bio": "Soleo tenus sui cursim celo acerbitas vir. Coniecto carpo provident hic ver vigilo. Consequuntur caelestis nam tubineus itaque vesper ubi.",
  "bornYear": 1947,
  "diedYear": null,
  "nationality": "American",
  "genres": [
    "Horror",
    "Thriller"
  ],
  "notableWorks": [
    "The Shining",
    "It",
    "The Stand"
  ],
  "imageUrl": "https://picsum.photos/seed/author-17/600/600",
  "createdAt": "2024-05-26T19:05:10.472Z"
}
Draftbit