TheMealDB Recipe Scraper avatar

TheMealDB Recipe Scraper

Pricing

from $1.50 / 1,000 results

Go to Apify Store
TheMealDB Recipe Scraper

TheMealDB Recipe Scraper

Search and extract recipe data from TheMealDB. Get ingredients, instructions, categories, and meal images. No API key needed.

Pricing

from $1.50 / 1,000 results

Rating

0.0

(0)

Developer

cloud9

cloud9

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Search and extract recipe data from TheMealDB. Get ingredients, instructions, categories, and meal images.

Features

Input Configuration

Modes

  1. search: /search.php?s={query}
  2. byCategory: /filter.php?c={category}
  3. random: /random.php

Example Input

{
"mode": "search",
"query": "example search",
"maxResults": 20
}

Output

The actor stores results in the Apify dataset. Each item contains:

  • idMeal
  • strMeal
  • strCategory
  • strArea
  • strInstructions
  • strMealThumb
  • strTags
  • strYoutube
  • strIngredient1
  • strMeasure1

Usage Example

const input = {
"mode": "search",
"query": "example search",
"maxResults": 20
};
const run = await ApifyClient.actor('themealdb-scraper').call(input);
const { items } = await ApifyClient.dataset(run.defaultDatasetId).listItems();
console.log(items);

Limits

  • Maximum results per run: 100
  • Rate limiting: 1 request per second (default)

Support

For issues or questions, contact the developer or open an issue on GitHub.

License

Apache-2.0