Parse recipe URLs and free text, extract and normalize ingredients, and calculate nutrition — the same engine that powers Cookspert, delivered as structured JSON.
Six endpoints across recipe parsing and ingredient intelligence — the same services behind every Cookspert product.
The same recipe intelligence that powers Cookspert is available through the Cookspert API — one endpoint turns any recipe URL or block of text into clean, structured data.
curl https://api.cookspert.com/v1/parse \
-H "Authorization: Bearer ck_live_..." \
-d url="https://bonapeti.bg/recipe/123"
{
"title": "Pumpkin ginger cream soup",
"cuisine": "Bulgarian",
"method": ["simmer", "blend"],
"time_minutes": 35,
"servings": 4,
"ingredients": [
{ "name": "pumpkin", "qty": 600, "unit": "g" },
{ "name": "ginger", "qty": 15, "unit": "g" }
],
"nutrition": { "kcal": 165, "protein_g": 6, "carbs_g": 22, "fat_g": 7 },
"language": "bg"
}No sales call required — the free tier includes 5,000 credits a month.
Sign up free — no card required.
Generate a key in the developer dashboard. The secret is shown exactly once.
Authenticate with a bearer token and parse your first recipe.
Every plan uses the same endpoints and the same parsing engine — only the credit allowance and rate limits change.