action stackexchange_get_filters_filters { label: "get_filters_filters" description: "Returns the fields included by the given filters, and the \"safeness\" of those filters.\n \nIt is not expected that this method will be consumed by many applications at runtime, it is provided to aid in debugging.\n \n{filters} can contain up to 20 semicolon delimited filters. Filters are obtained via calls to /filters/create, or by using a built-in filter.\n \nThis method returns a list of filters.\n" provider: stackexchange method: GET path: "/filters/{filters}" encoding: json input: { type: "object" properties: { filters: { type: "string" } } required: ["filters"] additionalProperties: false } output: { type: "object" additionalProperties: true } }