action stream_io_api_list_block_lists { label: "List block lists" description: "Returns all available block lists" provider: stream_io_api method: GET path: "/blocklists" encoding: json output: { type: "object" required: ["blocklists", "duration"] properties: { blocklists: { type: "array" items: { type: "object" description: "Block list contains restricted words" required: ["name", "words"] properties: { created_at: { type: "string" format: "date-time" description: "Date/time of creation" } name: { type: "string" description: "Block list name" } updated_at: { type: "string" format: "date-time" description: "Date/time of the last update" } words: { type: "array" description: "List of words to block" items: { type: "string" } } } } } duration: { type: "string" description: "Duration of the request in human-readable format" } } } }