action mastodon_get_api_v1_accounts_id_lists { label: "get_api_v1_accounts_id_lists" description: "User lists that you have added this account to." provider: mastodon method: GET path: "/api/v1/accounts/{id}/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." } } } } }