Discover/Argiro API
live

Argiro APIargiro.gr

Search and retrieve Greek recipes from argiro.gr. Get structured recipe data including ingredients, instructions, timing, servings, and category via 3 endpoints.

This API takes change requests — .
Endpoint health
verified 34m ago
search_recipes
get_recipe
get_latest_recipes_by_category
3/3 passing latest checkself-healing
Endpoints
3
Updated
1h ago

What is the Argiro API?

The Argiro.gr API provides access to Greek recipes from Argiro Barbarigou's cooking website via 3 endpoints. The get_recipe endpoint returns fully structured recipe data — ingredients, step-by-step instructions, cook time in ISO 8601 format, servings, cuisine, and keywords — keyed by URL slug. Pair it with search_recipes or get_latest_recipes_by_category to discover recipes across the site's full category hierarchy.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (starts at 1).
Search query for recipes. Greek terms recommended (e.g. 'κοτόπουλο' for chicken, 'σοκολάτα' for chocolate).
api.parse.bot/scraper/273ef8c2-d9a5-40c5-87c0-79e8fa823c57/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/273ef8c2-d9a5-40c5-87c0-79e8fa823c57/search_recipes?query=%CE%BA%CE%BF%CF%84%CF%8C%CF%80%CE%BF%CF%85%CE%BB%CE%BF' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Search recipes on argiro.gr by keyword. Returns paginated recipe summaries (12 per page) with title, slug, category, and image. The site is Greek, so Greek search terms (e.g. 'κοτόπουλο') produce more results than English equivalents. An empty result set is valid for queries with no matches.

Input
ParamTypeDescription
pageintegerPage number for pagination (starts at 1).
queryrequiredstringSearch query for recipes. Greek terms recommended (e.g. 'κοτόπουλο' for chicken, 'σοκολάτα' for chocolate).
Response
{
  "type": "object",
  "fields": {
    "page": "Current page number",
    "query": "The search query that was used",
    "recipes": "Array of recipe summaries with title, slug, url, category, and image",
    "has_next": "Whether there is a next page",
    "total_pages": "Total number of pages available",
    "total_results": "Total number of matching recipes"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "κοτόπουλο",
      "recipes": [
        {
          "url": "https://www.argiro.gr/recipe/fileto-stithos-kotopoulo-me-pesto-vasilikou/",
          "slug": "fileto-stithos-kotopoulo-me-pesto-vasilikou",
          "image": "https://www.argiro.gr/wp-content/uploads/2026/07/fileto-stithos-kotopoulo-pesto-360x270.jpg",
          "title": "Φιλέτο στήθος κοτόπουλο με πέστο βασιλικού",
          "category": "ΚΟΤΟΠΟΥΛΟ"
        }
      ],
      "has_next": true,
      "total_pages": 11,
      "total_results": 127
    },
    "status": "success"
  }
}

About the Argiro API

Searching and Browsing Recipes

The search_recipes endpoint accepts a query string and an optional page integer. It returns up to 12 recipe summaries per page, each containing title, slug, url, category, and image. The response includes total_results, total_pages, and a has_next boolean for straightforward pagination. Because the site is in Greek, queries using Greek terms — for example κοτόπουλο for chicken or σοκολάτα for chocolate — consistently return more results than transliterated or English equivalents.

Fetching Full Recipe Details

Pass a slug obtained from search_recipes or get_latest_recipes_by_category to get_recipe to retrieve the full recipe record. The response includes name, description, author, cuisine, category, keywords, servings, cook_time (ISO 8601 duration, e.g. PT45M), image, and url. This is the only endpoint that exposes ingredient lists and step-by-step instructions.

Browsing by Category

The get_latest_recipes_by_category endpoint takes a category slug that mirrors the site's URL structure. Top-level slugs like glika (sweets) or almira (savory) return that section's newest recipes. Subcategories follow a path format: almira/kotopoulo for chicken dishes, almira/salates for salads. Each page returns up to 12 summaries with the same fields as search_recipes. Use this endpoint when you need the latest content in a specific section rather than keyword-driven results.

Reliability & maintenanceVerified

The Argiro API is a managed, monitored endpoint for argiro.gr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when argiro.gr changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official argiro.gr API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
34m ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Greek recipe discovery app indexed by category using get_latest_recipes_by_category with subcategory slugs
  • Populate a meal-planning tool with cook times and serving sizes from get_recipe
  • Create a recipe search interface that autocompletes Greek ingredient names and queries search_recipes
  • Aggregate weekly new recipe releases across multiple categories for a newsletter digest
  • Extract structured ingredient lists and instructions for nutritional analysis pipelines
  • Build a keyword-based recipe recommendation engine using the keywords and category fields returned by get_recipe
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does argiro.gr have an official developer API?+
No. Argiro.gr does not publish an official public developer API or documented data access endpoints.
What does `get_recipe` return beyond the summary fields from search?+
get_recipe is the only endpoint that returns full recipe content: a text description, the ingredient list, step-by-step instructions, cook_time in ISO 8601 duration format, servings, cuisine, and comma-separated keywords. The search and category endpoints return only title, slug, url, category, and image.
Does the search endpoint support filtering by category or cook time?+
The search_recipes endpoint filters only by the query string and page number. Filtering by category, cook time, or servings is not currently supported there. get_latest_recipes_by_category narrows results by category slug, but finer filters are not exposed. You can fork this API on Parse and revise it to add filtering parameters to the missing endpoint.
Are nutrition facts available for recipes?+
Not currently. The API returns ingredients and instructions but does not expose calorie counts, macros, or other nutrition data. You can fork this API on Parse and revise it to add a nutrition endpoint if that data becomes available on the source pages.
How does pagination work across the three endpoints?+
All three endpoints paginate at 12 results per page. The page parameter (integer, starts at 1) controls which page is returned. The response always includes total_pages, total_results (search only), and has_next so you can determine whether to fetch additional pages.
Page content last updated . Spec covers 3 endpoints from argiro.gr.
Related APIs in Food DiningSee all →
akispetretzikis.com API
Search and discover thousands of recipes from Akis Petretzikis' collection, then view detailed cooking instructions, ingredients, and nutritional information for each dish. Browse recipes by category to find exactly what you're looking for, whether you need a quick weeknight dinner or an elaborate dessert.
allrecipes.com API
Search and browse millions of recipes from Allrecipes while accessing detailed information like ingredients, step-by-step instructions, nutritional facts, and user reviews. Find the perfect dish by searching specific recipes or exploring curated categories.
seriouseats.com API
Search and retrieve thousands of recipes and expert cooking advice from Serious Eats to find exactly what you're looking for in the kitchen. Get detailed recipe information including ingredients, instructions, and trusted culinary expertise to help you cook with confidence.
blueapron.com API
Search and browse Blue Apron recipes, menus, and cookbooks to discover meal ideas and get detailed recipe information. Access the complete recipe catalog through sitemaps and detailed recipe listings with ingredients and instructions.
epicurious.com API
Search Epicurious recipes by ingredient or cuisine, view detailed recipe information including ingredients and instructions, and read user reviews to find the best dishes to cook. Get everything you need to discover and prepare new meals from one of the web's most trusted recipe sources.
tasty.co API
Search and discover Tasty.co recipes by ingredients or cuisine, then access detailed cooking instructions, ingredient lists, and video guides for each dish. Browse popular recipes and get pro cooking tips to perfect your meals.
bbcgoodfood.com API
Search thousands of recipes with full ingredient lists, cooking directions, and nutritional information. Browse recipes by topic and category, and access user reviews and ratings for each dish.
argos.co.uk API
Search and browse Argos UK's product catalog to find items by category or keyword, then retrieve detailed product information including pricing, descriptions, and real-time stock availability for your postcode. Access Argos's complete category structure to explore products and make informed shopping decisions.