Data
Inspirational quote (ZenQuotes) API
A random quote, or the quote of the day (ZenQuotes). For content/greeting agents. Answers 'give me a quote', 'quote of the day', 'inspirational quote', 'a motivational saying'.
Price$0.01per request
MethodPOST
Route/v1/data/quote
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache60s public
dataquotequotesinspirationzenquotesmotivationcontentsaying
API URL
Integration docshttps://x402.hexl.dev/v1/data/quoteExample request
{
"mode": "random"
}Example response
{
"mode": "random",
"quote": "The best teacher is experience and not through someone's distorted point of view.",
"author": "Jack Kerouac"
}Input schema
{
"type": "object",
"properties": {
"mode": {
"type": "string",
"enum": [
"random",
"today"
],
"default": "random"
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}