Curvo substantia thesaurus caries adiuvo ago aliqua.
- text
- Curvo substantia thesaurus caries adiuvo ago aliqua.
- authorName
- Dora Greenfelder
- source
- solium adopto sublime agnitio compello
- category
- Motivation
- createdAt
Overview
quotes / #142
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quotes/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quotes/142" ); 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/142"
);
const quote = (await res.json()) as Quote; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quotes/142"
)
quote = res.json() Response
{
"id": 142,
"text": "Curvo substantia thesaurus caries adiuvo ago aliqua.",
"authorName": "Dora Greenfelder",
"source": "solium adopto sublime agnitio compello",
"category": "Motivation",
"createdAt": "2024-09-20T12:57:42.923Z"
}