Sorry for the delayed response. I'd like to know whether search recipe API works for you. In general, the structure is : return response.results.map(recipe=> { return { id: recipe.id, title: recipe.title, image: recipe.image || "N/A" }; }) Keep lines 1 and 7 when you are returning a list of items. recipe is the variable name that I return and hence I use that reference in lines 2-5. Similar approach for the Get recipes API. I have ingredients in a separate line because that's a list, whereas the rest are single values. An easy option is to use ChatGPT or Claude and give it some context and it will help you write it. A bit of error handling and tinkering should make it work.
