Get Ingredients data from tasty.co
This Apify actor scrapes recipe ingredients from Tasty.co, one of the world's largest food-focused digital platforms. It enables developers, food enthusiasts, and researchers to programmatically access Tasty's extensive recipe database through a simple API interface.
Parameter | Type | Default | Description |
---|---|---|---|
mealTag | string | "chicken" | Meal category (e.g., 'chicken', 'pasta', 'dole-pineapple-day', 'potato', 'beef') |
page | string | "1" | Page number for pagination through search results |
perPage | string | "20" | Number of results to return per page (max: 100) |
1const input = { 2 "mealTag": "chicken", 3 "page": "1", 4 "perPage": "20" 5};
1const input = { 2 "mealTag": "chicken", 3 "page": "2", 4 "perPage": "50" 5};
The actor returns data in JSON format with the following structure:
1{ 2 "items": [ 3 { 4 "id": "recipe_id", 5 "name": "Recipe Name", 6 "description": "Recipe Description", 7 "ingredients": [...], 8 "instructions": [...], 9 "nutritionalInfo": {...}, 10 "cookTime": "...", 11 "servings": "..." 12 } 13 ], 14 "totalCount": 100, 15 "currentPage": 1 16}
1curl --request POST \ 2 --url https://api.apify.com/v2/acts/[ACTOR_NAME]/runs?token=[YOUR_API_TOKEN] \ 3 --header 'content-type: application/json' \ 4 --data '{ 5 "query": "chicken", 6 "page": "1", 7 "perPage": "20" 8 }'
The actor implements robust error handling for common scenarios:
For issues and feature requests, please: Contact support at pintoflowpt@gmail.com
recipes, tasty, food scraping, recipe api, cooking, meal planning, food data, web scraping, apify actor, tasty.co, recipe search, food database, cooking api, recipe crawler, food scraper
Passionate about exploring the culinary world through Tasty's innovative recipes and cooking videos. I love their bite-sized recipe formats and creative food hacks that make cooking accessible and fun.
Q: What makes Tasty recipes different? A: Tasty specializes in easy-to-follow video recipes with clear, step-by-step instructions. Their signature overhead shooting style and concise format make cooking approachable for all skill levels.
Q: Do I need special equipment? A: Most Tasty recipes use basic kitchen equipment. While some recipes might call for specific tools, they often provide alternatives for common household items.
Q: Are the recipes beginner-friendly? A: Yes! Tasty offers recipes for all skill levels, from complete beginners to experienced cooks. Their detailed instructions and visual guides make it easy to follow along.
Q: Can I find dietary-specific recipes? A: Absolutely! Tasty has dedicated collections for vegetarian, vegan, gluten-free, low-carb, and other dietary preferences.
Q: How can I save recipes? A: Create a free Tasty account to save your favorite recipes, make shopping lists, and join the community. You can also download the Tasty app for mobile access.
Follow along as I recreate Tasty's viral recipes and share my own kitchen adventures! Let's make something delicious together. 🥘
Cooking with love and a dash of Tasty inspiration ✨
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!