Surgo alias denego repudiandae caste canto ago adfectus uxor fugiat.
- text
- Surgo alias denego repudiandae caste canto ago adfectus uxor fugiat.
- authorName
- Luis Kulas
- source
- —
- category
- Life
- createdAt
Overview
quotes / #134
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quotes/134" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quotes/134" ); const quote = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/quotes.d.ts https://example-data.com/types/quotes.d.ts
import type { Quote } from "./types/quotes";
const res = await fetch(
"https://example-data.com/api/v1/quotes/134"
);
const quote = (await res.json()) as Quote; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quotes/134"
)
quote = res.json() Response
{
"id": 134,
"text": "Surgo alias denego repudiandae caste canto ago adfectus uxor fugiat.",
"authorName": "Luis Kulas",
"source": null,
"category": "Life",
"createdAt": "2024-11-09T21:39:29.523Z"
}