# Tasty Recipe Scraper (`parseforge/tasty-scraper`) Actor

Scrapes Tasty.co recipes by search query and returns each recipe as a flat row with ingredients, instructions, nutrition facts, and media URLs.

- **URL**: https://apify.com/parseforge/tasty-scraper.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** E-commerce, Videos, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $19.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

[![ParseForge](https://raw.githubusercontent.com/ParseForge/apify-assets/main/banner.jpg)](https://apify.com/parseforge?fpr=vmoqkp)

### Tasty Recipe Scraper

**Scrape Tasty recipes by any search term, up to a million per run.** Each recipe comes with its full ingredient list, step-by-step instructions, cook time, and nutrition facts. No login or API key. Export to CSV, JSON, Excel, or XML.

Tasty's website is a goldmine of tested recipes, but manually copying ingredient lists and instructions is slow. This Actor searches Tasty by keyword, reads every matching recipe, and returns the structured data you need in one fixed schema. It handles pagination and rate limits so you get clean, analysis-ready rows.

| Who uses it | What they scrape Tasty for |
|---|---|
| Food bloggers | Gathering a batch of trending recipes to analyze ingredient pairings and write a roundup post. |
| Meal-planning app developers | Populating a database with structured recipe data including cook times and nutrition. |
| Nutrition researchers | Collecting recipes for a specific diet keyword to compare calorie and macro claims. |
| Home cooks | Saving a personal collection of recipes from a favorite cuisine into a spreadsheet. |

### What it does

This Actor collects Tasty recipes by search query and returns each one as a flat row with its full details.

- 🔎 **Keyword search:** feed it any term like 'vegan tacos' or 'chocolate cake' and it finds every matching recipe.
- 📋 **Full recipe extraction:** ingredients, step-by-step instructions, prep time, cook time, total time, and servings.
- 📊 **Nutrition facts:** calories, fat, carbs, protein, and fiber per serving when Tasty provides them.
- 🏷️ **Tags and cuisine:** each recipe's tags, difficulty level, and cuisine category are included.
- 🖼️ **Media URLs:** thumbnail and video URLs come with every recipe row.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

### What you can do with Tasty data

**📈 Build a recipe dataset for a food app.**

A developer searches 'keto dinner' with a high maxItems to seed a meal-planning app with hundreds of low-carb recipes complete with macros.

**📝 Research a food trend for a blog post.**

A food writer searches 'cloud bread' to collect every variant, then compares ingredient ratios and cook times to explain the trend.

**🥗 Compare nutrition across a category.**

A nutrition student searches 'salad' to pull calorie and fat data from 200 recipes and find the most common hidden high-calorie ingredients.

**📋 Save a personal cookbook.**

A home cook searches 'Thai' to scrape 50 recipes, exports them to CSV, and keeps a searchable offline collection of favorites.

### Why choose this scraper

| | What you get |
|---|---|
| **No API key needed** | Reads the public Tasty search feed directly, no registration or OAuth. |
| **One flat row per recipe** | Every recipe lands in your dataset with the same columns, ready for Excel or a database. |
| **Handles large searches** | Set maxItems up to 1,000,000 and it paginates until your cap or the last result. |
| **Clean, structured output** | Ingredients and instructions are extracted as lists, not a wall of text. |

### How it compares

This Actor focuses on Tasty.co search with a simple keyword input, while the alternative offers a broader multi-site approach.

| Feature | ParseForge | Tasty Recipes Scraper |
|---|---|---|
| Search by keyword | Yes | Yes |
| Full ingredient list | Yes | Not listed |
| Step-by-step instructions | Yes | Not listed |
| Nutrition facts per serving | Yes | Not listed |
| Media URLs (thumbnail and video) | Yes | Not listed |
| Up to 1,000,000 recipes per run | Yes | Not listed |

### Configure the run

Drive the Actor with a single search query and a maximum recipe count; it stops cleanly once it hits your cap. The Input tab lists every parameter.

A first run with the defaults:

```json
{
 "searchQuery": "pasta",
 "maxItems": 10
}
```

A larger pull:

```json
{
 "searchQuery": "pasta",
 "maxItems": 200
}
```

### Pricing

Pay-per-result: **$0.021 per result** collected. You pay only for the results written to your dataset.

| Results collected | Approximate cost |
|---|---|
| 100 results | $2.10 |
| 1,000 results | $21.00 |
| 10,000 results | $210.00 |

New Apify accounts start with $5 in free credit.

### Free users

Free-plan runs return up to 10 results as a preview. [Upgrade your Apify plan](https://console.apify.com/sign-up?fpr=vmoqkp) to collect up to 1,000,000 results per run.

### Run it

1. [Create a free Apify account with $5 in credit](https://console.apify.com/sign-up?fpr=vmoqkp).
2. Open the [Tasty Recipe Scraper](https://apify.com/parseforge/tasty-scraper?fpr=vmoqkp).
3. Set your inputs and any filters, then click **Start**.
4. Export the results as CSV, Excel, JSON, or XML from the **Dataset** tab.

Run it programmatically through the [Apify API](https://docs.apify.com/api/v2) (`run-sync-get-dataset-items`) or the [ApifyClient](https://docs.apify.com/api/client/js) for JavaScript and Python.

### Use with AI agents (MCP)

Give an AI agent live access to Tasty through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

```bash
claude mcp add --transport http apify "https://mcp.apify.com/?tools=parseforge/tasty-scraper"
```

Then prompt it in plain language to run the scraper and read back the results.

### Troubleshooting

**Why am I getting no results?**

Check your search query spelling. Try a broader term, like 'pasta' instead of 'gluten-free squid ink pasta'. If Tasty's search returns no recipes for that term, the Actor will have nothing to scrape.

**The run finished but I got fewer recipes than my maxItems.**

The Actor stops when Tasty has no more matching recipes. Your search term may have fewer total results than the cap you set. Try a more general keyword.

**Some recipes are missing nutrition facts.**

Not every recipe on Tasty includes a nutrition panel. The Actor can only return the data that Tasty publishes. Missing fields will be empty in your dataset.

**The run timed out or seems stuck.**

Large searches with a very high maxItems can take a while. Check the run log for progress. If it fails repeatedly, try a lower maxItems and run multiple searches.

**Ingredients are showing up as one block of text instead of a list.**

The Actor extracts ingredients as a structured list. If your export looks like a single block, open the JSON or CSV version, where each ingredient is a separate array element or delimited field.

### FAQ

| Question | Answer |
|---|---|
| Can I scrape recipes by a specific diet, like vegan or gluten-free? | Yes. Include the diet term in your search query, for example 'vegan brownies' or 'gluten-free pancakes'. The Actor searches Tasty with your exact keywords and returns whatever matches. |
| Does this Actor get the full ingredient list and instructions? | Yes. Every recipe row includes the complete ingredient list and step-by-step instructions, extracted as structured text. |
| What nutrition information is included? | When Tasty provides nutrition facts, the Actor returns calories, fat, carbohydrates, protein, and fiber per serving. Not every recipe on Tasty has this data. |
| How many recipes can I get in one run? | You set the maximum with the maxItems field, up to 1,000,000. The Actor stops when it reaches your cap or when Tasty has no more matching recipes. |
| Do I need a Tasty account or API key? | No. The Actor reads the public search pages on Tasty.co, so no login, API key, or registration is required. |
| Can I filter by cook time or difficulty? | The Actor does not have separate filter fields for cook time or difficulty. Include those terms in your search query, like 'easy 30 minute dinner', to narrow results. |
| What output formats are supported? | You can export your dataset to CSV, JSON, Excel, or XML from the Apify platform. |
| Does it scrape the recipe video? | The Actor returns the video URL and thumbnail URL for each recipe when Tasty provides them. It does not download the video file itself. |
| Can I scrape recipes from a specific Tasty URL instead of a search? | This Actor works by search query. If you have a list of specific Tasty recipe URLs, you could feed them to a generic Web Scraper Actor on Apify. |
| Is this Actor affiliated with Tasty or BuzzFeed? | No. This is an unofficial community Actor that reads publicly available web pages. It is not endorsed by or affiliated with BuzzFeed, Inc. |

### Related actors

Browse the full [ParseForge collection](https://apify.com/parseforge?fpr=vmoqkp) for more scrapers.

🆘 **Need help?** Email parseforge@protonmail.com with your run ID, your input, and what you expected.

⚠️ **Disclaimer.** This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by BuzzFeed, Inc. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.

# Actor input Schema

## `searchQuery` (type: `string`):

Keyword to search for recipes (e.g. 'pasta', 'chicken', 'vegan tacos').

## `maxItems` (type: `integer`):

How many recipes to collect per run.

## Actor input object example

```json
{
  "searchQuery": "pasta",
  "maxItems": 10
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQuery": "pasta",
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/tasty-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchQuery": "pasta",
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/tasty-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQuery": "pasta",
  "maxItems": 10
}' |
apify call parseforge/tasty-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,parseforge/tasty-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/iu6WfrjyMeRi55oAG/builds/REWjeecnWh4J7uzmC/openapi.json
