Getting Started

dish-embed is a food-specialized embedding model and API suite. It understands menu items the way a human would.

Install the Python SDK

pip install requests

Make your first API call

import requests

response = requests.post(
    "https://embed.statode.com/search",
    headers={"X-API-Key": "YOUR_KEY"},
    json={
        "query": "butter chicken",
        "corpus": ["Murgh Makhani", "Dal Tadka", "Paneer Tikka"],
        "top_k": 3
    }
)
print(response.json())