action spoonacular_create_recipe_card_get { label: "Create Recipe Card" description: "Generate a recipe card for a recipe." provider: spoonacular method: GET path: "/recipes/{id}/card" encoding: json input: { type: "object" properties: { backgroundColor: { type: "string" } backgroundImage: { type: "string" } fontColor: { type: "string" } id: { type: "number" } mask: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" } }