example-data.com

quotes / #113

text
Patrocinor tunc nostrum aggero decens curriculum adeo adamo tabgo abduco.
authorName
Olive Oberbrunner
source
acer aurum quam
category
Philosophy
createdAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/quotes/113" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/quotes/113"
);
const quote = await res.json();
import type { Quote } from "https://example-data.com/types/quotes.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/quotes/113"
);
const quote = (await res.json()) as Quote;
import requests

res = requests.get(
    "https://example-data.com/api/v1/quotes/113"
)
quote = res.json()
{
  "id": 113,
  "text": "Patrocinor tunc nostrum aggero decens curriculum adeo adamo tabgo abduco.",
  "authorName": "Olive Oberbrunner",
  "source": "acer aurum quam",
  "category": "Philosophy",
  "createdAt": "2024-09-12T08:43:36.027Z"
}
Draftbit