action spoonacular_talk_to_chatbot { label: "Talk to Chatbot" description: "This endpoint can be used to have a conversation about food with the spoonacular chatbot. Use the \"Get Conversation Suggests\" endpoint to show your user what he or she can say." provider: spoonacular method: GET path: "/food/converse" encoding: json input: { type: "object" properties: { contextId: { type: "string" } text: { type: "string" } } required: ["text"] additionalProperties: false } output: { type: "object" required: ["answerText", "media"] properties: { answerText: { type: "string" } media: { type: "array" items: { properties: {} } } } } }