action mastodon_get_api_v1_custom_emojis { label: "get_api_v1_custom_emojis" description: "Returns custom emojis that are available on the server." provider: mastodon method: GET path: "/api/v1/custom_emojis" encoding: json output: { type: "array" items: { type: "object" description: "Represents a custom emoji." required: ["shortcode", "url", "static_url", "visible_in_picker"] properties: { category: { type: "string" description: "Used for sorting custom emoji in the picker." } shortcode: { type: "string" description: "The name of the custom emoji." } static_url: { type: "string" description: "A link to a static copy of the custom emoji. The format is URL." } url: { type: "string" description: "A link to the custom emoji. The format is URL." } visible_in_picker: { type: "boolean" description: "Whether this Emoji should be visible in the picker or unlisted." } } } } }