Liz Anaya Ramos
·Developer Community Manager @ Xano

Array Contains Challenge

Objective: Write an API endpoint that sifts through a dataset of recipes, returning all recipes that list "eggs" as an ingredient.

Expected Result: An array of objects, each representing a recipe that includes eggs among its ingredients.

Example:

[
  {
    "recipeName": "recipe",
    "ingredients": ["ingredient", "ingredient"...]
  },
  {
    "recipeName": "recipe",
    "ingredients": ["ingredient", "ingredient"...]
  }
]


Install the snippet to get started: https://www.xano.com/snippet/XwN5GThx

challenge_id: 3

1