example-data.com

quotes / #118

text
Carus delinquo acies basium cubo cunabula aspernatur doloremque compello auditor color arto acervus.
authorName
Melody Johnston IV
source
category
Life
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/quotes/118"
)
quote = res.json()
{
  "id": 118,
  "text": "Carus delinquo acies basium cubo cunabula aspernatur doloremque compello auditor color arto acervus.",
  "authorName": "Melody Johnston IV",
  "source": null,
  "category": "Life",
  "createdAt": "2025-04-29T02:53:23.693Z"
}
Draftbit