Fetch the List of Available Filters
Learn how to get the lists of available categories, cuisines, and ingredients available in the database.
We get the lists of items that we can use to filter the meals using the base URI https://www.themealdb.com/api/json/v1/1/list.php
.
This endpoint provides three types of lists, which are as follows:
- Categories list
- Cuisines list
- Ingredients list
We’ll look at how to get these lists in this lesson. ...