action quotes_get_quote_image_search { label: "get_quote_image_search" description: "Gets a Random Quote image. Optional `category` param determines the category of quote used in the image. Optional `author` param gets the quote image of a given author. \n" provider: quotes method: GET path: "/quote/image/search" encoding: json input: { type: "object" properties: { author: { type: "string" format: "string" } category: { type: "string" format: "string" } private: { type: "boolean" format: "boolean" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }