action appwrite_avatars_get_favicon { label: "Get Favicon" description: "Use this endpoint to fetch the favorite icon (AKA favicon) of any remote website URL.\n" provider: appwrite method: GET path: "/avatars/favicon" encoding: json input: { type: "object" properties: { url: { type: "string" format: "url" } } required: ["url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }