Platform Knowledge Graph API Dataset Developers Documentation Enterprise Request API Access
Home/Documentation

API Documentation

Everything you need to build on the MenuClaw Restaurant Intelligence API — quickstart, authentication, references and changelog.

Quickstart

Get started in 3 steps

1 · Get a key

Request API access to receive a sandbox key. Sandbox keys have full graph access on sample data and are free.

2 · Install the SDK

pip install menuclaw or npm i menuclaw. Or call the REST API directly — full OpenAPI spec available.

3 · Make your first call

Query a restaurant, dish or ingredient. Most developers are in production within a day.

quickstart.py
from menuclaw import MenuClaw

mc = MenuClaw(api_key="mc_sandbox_...")

# Look up a restaurant and its menu
r = mc.restaurant.get("R-8841")
menu = mc.restaurant.menu(lat=r.lat, lon=r.lon)

print(r.name, "·", r.cuisine, "·", len(menu.items), "items")
Authentication

Bearer tokens, simple and secure

Send your key in the Authorization header. Keys are scoped to an environment (sandbox / production) and can be rotated without downtime.

curl
curl https://api.menuclaw.com/v1/restaurant/R-8841 \
  -H "Authorization: Bearer mc_live_..." \
  -H "Content-Type: application/json"
Reference

Core endpoints

MethodEndpointDescription
GET/v1/restaurant/{id}Restaurant identity, cuisine, hours, price band.
GET/v1/restaurant/menuStructured menu with sections, items and modifiers.
POST/v1/dish/searchSemantic dish search with filters and geo.
GET/v1/dish/{id}Canonical dish with ingredients and labels.
GET/v1/dish/{id}/nutritionCalories, macros and dietary attributes.
GET/v1/restaurant/intelligenceDerived insights: demand, price index, top dishes.
POST/v1/graph/traversePath queries across the knowledge graph.
POST/v1/webhooksRegister menu-change and price-update hooks.

Full schema, parameters, error codes and rate limits are in the interactive reference. Visit the developer platform.

Changelog

What's new

v1.4 · Graph traversal API

NEWPOST /v1/graph/traverse for multi-hop path queries. Plus graph embeddings snapshots in 768 dimensions.

v1.3 · Nutrition confidence scores

IMPROVED — Every nutrition fact now carries a confidence band and source lineage.

v1.2 · Webhooks GA

NEW — Menu-change, price-update and restaurant-lifecycle webhooks with retries and replay.

v1.0 · Restaurant Intelligence API

GA — The stable, versioned foundation. Sandbox and production environments.

Read the docs, ship faster.

Get API access and a full OpenAPI spec for your integration.