action mastodon_get_api_v1_lists { label: "get_api_v1_lists" description: "Fetch all lists that the user owns." provider: mastodon method: GET path: "/api/v1/lists" encoding: json output: { type: "array" items: { description: "Represents a list of some users that the authenticated user follows." required: ["id", "title", "replies_policy"] properties: { id: { type: "string" description: "The internal database ID of the list. Cast from an integer, but not guaranteed to be a number." } replies_policy: { type: "string" description: "The user-defined title of the list." enum: ["followed", "list", "none"] } title: { type: "string" description: "The user-defined title of the list." } } } } }