quotes / #108
- text
- Terminatio ipsum ipsa vulnus decens apto crapula cedo aggredior thorax peior canonicus tero victus tero antea trepide.
- authorName
- Alberto Skiles
- source
- —
- category
- Life
- createdAt
Component variants
curl -sS \
"https://example-data.com/api/v1/quotes/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/quotes/108"
);
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/108"
);
const quote = (await res.json()) as Quote;import requests
res = requests.get(
"https://example-data.com/api/v1/quotes/108"
)
quote = res.json() {
"id": 108,
"text": "Terminatio ipsum ipsa vulnus decens apto crapula cedo aggredior thorax peior canonicus tero victus tero antea trepide.",
"authorName": "Alberto Skiles",
"source": null,
"category": "Life",
"createdAt": "2024-09-17T02:18:48.048Z"
}