Upload food & beverage menus as PDF or images. Get structured JSON back in seconds. Names, descriptions, prices, dietary info — all extracted automatically.
Most menus parsed in 4-6 seconds. Upload and get JSON back before you can finish reading this sentence.
Handles menus in any language. Automatically detects the language and currency for you.
1 credit = 1 page. Buy only what you need. No minimum commitments, no wasted resources.
One API call. Structured JSON response with sections, items, prices, dietary info, and allergens.
curl -X POST https://api.menuparser.com/v1/parse \
-H "Authorization: Bearer mp_live_your_api_key" \
-F "file=@menu.pdf"
# Response:
{
"id": "job_abc123",
"status": "completed",
"pages": 3,
"credits_charged": 3,
"menu": {
"language": "en",
"currency": "USD",
"sections": [
{
"name": "Burgers",
"items": [
{
"name": "Classic Burger",
"description": "Angus beef, lettuce, tomato",
"prices": [{ "label": null, "amount": 12.50 }],
"dietary": [],
"allergens": ["gluten"]
}
]
}
]
}
}Get started in minutes. SDKs for Python, TypeScript, Go, Java, Ruby, and PHP.
Create Free Account