Get API Key

Agentic Recipe Parser API

A high-performance recipe scraping and formatting utility for AI agents, cooking apps, and smart kitchen devices.

Get API Key →

Key Features

  • Clutter-Free Extraction: Instantly strips ads, stories, and SEO filler from online cooking sites.
  • Voice & Cook-Ready JSON: Outputs clean ingredient arrays and logical step-by-step directions.
  • Unit Normalization: Automatically normalizes weight and volume metrics to canonical formats.
  • Agentic Friendly: Serves OpenAPI 3.1 contracts and manifests for direct AI integration.

Simple Pricing

Prepaid, cost-plus charging. We count tokens, reserve provider costs (with a transparent 50% markup), and settle after execution. Run `/api/v1/agent/policy` for exact current pricing details.

Request Example
curl -X POST https://ouichef.einansatz.com/api/v1/agent/parse \
  -H "Authorization: Bearer sk_ouichef_..." \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example-food-blog.com/recipe"}'
Output Schema
{
  "title": "Classic Garlic Tomato Pasta",
  "sourceUrl": "https://example-food-blog.com/recipe",
  "servings": 4,
  "prepTime": "15 minutes",
  "cookTime": "25 minutes",
  "ingredients": [
    {
      "name": "garlic cloves",
      "quantity": 4,
      "unit": "pcs",
      "notes": "thinly sliced"
    }
  ],
  "steps": [ ... ]
}