action quotes_get_qod { label: "get_qod" description: "Gets `Quote of the Day`. Optional `category` param determines the category of returned quote of the day\n" provider: quotes method: GET path: "/qod" encoding: json input: { type: "object" properties: { category: { type: "string" format: "string" } language: { type: "string" format: "string" } } additionalProperties: false } output: { properties: { contents: { properties: { quotes: { type: "array" description: "List of quotes" items: { type: "object" } } } } success: { type: "string" description: "Metadata about this successful call" } } } }