Question
Is there a read endpoint that returns all recipes with their full ingredient lists?
I want to build a report showing all recipes grouped by primary protein ingredient. To do this I need to retrieve every recipe with its full ingredient list in one query rather than one API call per recipe.
Is there a list endpoint that supports expanding ingredient data, or do I need to call GET /v2/recipes/{id} for each?

