Catalog/kb-quotes

Data

Quotes from Wikiquote API

Fetch quotations for a person or topic from Wikiquote (keyless), extracting the top-level quote bullets from the page and cleaning wiki markup, refs, and templates into plain deduped strings. Answers 'quotes by X', 'famous quotes about X', 'what did X say', 'give me a quote from X'.

Price$0.01per request
MethodPOST
Route/v1/data/kb-quotes
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datawikiquotequotesquotationspersontopicsayingswikimedia
API URLhttps://x402.hexl.dev/v1/data/kb-quotes
Integration docs
Example request
{
  "topic": "Albert Einstein",
  "limit": 5
}
Example response
{
  "topic": "Albert Einstein",
  "title": "Albert Einstein",
  "count": 2,
  "quotes": [
    "Imagination is more important than knowledge.",
    "The only source of knowledge is experience."
  ],
  "url": "https://en.wikiquote.org/wiki/Albert_Einstein"
}
Input schema
{
  "type": "object",
  "required": [
    "topic"
  ],
  "properties": {
    "topic": {
      "type": "string",
      "examples": [
        "Albert Einstein"
      ]
    },
    "limit": {
      "type": "number",
      "default": 20
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}