action medium_get_search_lists_query_query { label: "Search Lists" description: "Returns an array of `list_ids` for the given search query results. (Max Length = 1000)\n" provider: medium method: GET path: "/search/lists?query={query}" encoding: json input: { type: "object" properties: { query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" properties: { lists: { type: "array" items: { type: "string" } } search_query: { type: "string" } } } }