Stephen King
Soleo tenus sui cursim celo acerbitas vir. Coniecto carpo provident hic ver vigilo. Consequuntur caelestis nam tubineus itaque vesper ubi.
Overview
authors / #17
Soleo tenus sui cursim celo acerbitas vir. Coniecto carpo provident hic ver vigilo. Consequuntur caelestis nam tubineus itaque vesper ubi.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/authors/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/authors/17" ); 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/17"
);
const author = (await res.json()) as Author; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/authors/17"
)
author = res.json() Response
{
"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"
}