Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the OpenMenu API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fopenmenu.com%2Fopenmenu" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fopenmenu.com%2Fopenmenu" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with OpenMenu API.
Search restaurants, menus, and individual menu items by keyword or location
Retrieve restaurant details including menu structure and contact information
Look up ingredient and nutrient data for specific menu items
Pull active deals and coupons attached to a restaurant or menu
Surface trending menu items using DishDNA machine-learning signals
GET STARTED
Access ML analyses, heatmaps, and taxonomies for menu data
Patterns agents use OpenMenu API for, with concrete tasks.
★ Restaurant Discovery by Location
Build a discovery surface that shows restaurants near a user's location with their current menus and active deals. The agent calls /location to find nearby restaurants, /restaurant for details, and /deals to surface active offers. Search results can be filtered by menu content using the /search endpoint.
Call GET /location with the user's coordinates, then for the top three restaurants call GET /deals and return the list of currently active deals.
Nutrition Lookup for a Dish
Surface calorie, ingredient, and nutrient data for a chosen menu item by calling /menu_items to find the item and /ingredients to retrieve its breakdown. This is useful for dietary apps, allergen filters, and calorie-conscious menu UIs.
Search /menu_items for 'caesar salad', take the top result's item ID, and call /ingredients to return its calorie and macronutrient values.
Trend Spotting with DishDNA Analytics
Identify which dishes are gaining traction in a region by combining the /trends endpoint with DishDNA-powered /analysis_search results. Outputs feed editorial roundups, retailer assortment decisions, and menu-engineering work.
Call GET /trends scoped to a chosen city, then return the top 10 trending menu items with their growth signal.
AI Agent Restaurant Assistant via Jentic
An assistant that helps users pick a restaurant or check what is on a menu can call OpenMenu through Jentic. The api_key is vaulted, calls are routed by intent, and the structured menu response keeps the LLM grounded in real menu items rather than hallucinated dishes.
Use Jentic to search for 'find restaurants near a location', execute GET /location with the coordinates, and return the names and addresses of the top five matches.
11 endpoints — openmenu provides a structured catalogue of restaurant menus, menu items, and nutritional and ingredient data, enriched with dishdna machine-learning analysis.
METHOD
PATH
DESCRIPTION
/search
Search restaurants, menus, and menu items
/restaurant
Get restaurant details
/location
Find restaurants near a location
/menu
Get menu items and taxonomies
/menu_items
Search menu items
/ingredients
Get ingredient and nutrient data
/deals
Get deals and coupons
/trends
Get trending menu items
/search
Search restaurants, menus, and menu items
/restaurant
Get restaurant details
/location
Find restaurants near a location
/menu
Get menu items and taxonomies
/menu_items
Search menu items
/ingredients
Get ingredient and nutrient data
/deals
Get deals and coupons
/trends
Get trending menu items
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the OpenMenu API by hand means appending the api_key query parameter to every request and building the query strings for restaurant, menu, and DishDNA lookups yourself. Through Jentic you install once, import the OpenMenu API from the API Directory, store the key once, and your agent calls it.
Permission scoping
You limit the agent to the operations it needs, such as searching restaurants near a location or fetching a menu's nutrition. This surface is read-only lookups, so you choose which of the search, restaurant, menu, and ingredient operations the agent may call.
Credential isolation
Your OpenMenu api_key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'find restaurants near a location' or 'get nutrition for a dish', and Jentic returns the matching OpenMenu operation with its query parameters so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using OpenMenu API through Jentic.
What authentication does the OpenMenu API use?
API key authentication via the api_key query parameter. Through Jentic the key is stored in your Jentic One instance and added to the request URL automatically, so it does not appear in agent logs.
Can I look up nutrition data for menu items with the OpenMenu API?
Yes. GET /ingredients returns ingredient and nutrient data for menu items, and /menu_items can be used to find the item ID first. This is the standard path for dietary or calorie-aware features.
What are the rate limits for the OpenMenu API?
OpenMenu does not publish a single global rate limit; it depends on the API plan. Cache restaurant and menu responses client-side and contact OpenMenu before high-volume bulk pulls.
How do I find restaurants near a location with the OpenMenu API through Jentic?
Search Jentic for 'find restaurants near a location', load GET /location, and execute it with latitude and longitude query parameters. Jentic appends the api_key from the vault.
What is DishDNA in the OpenMenu API?
DishDNA is OpenMenu's machine-learning layer that classifies and ranks menu items. The /analysis, /analysis_search, /trends, and /heatmap endpoints expose DishDNA-derived signals such as taxonomies and trend scores on top of the raw menu data.
Can I retrieve active restaurant deals with the OpenMenu API?
Yes. GET /deals returns deals and coupons currently published for restaurants in the catalogue, scoped by the supplied query parameters.
Can I limit what my agent is allowed to do with the OpenMenu API?
Yes. Because you run Jentic One yourself, your own rules decide which OpenMenu operations and credentials your agent can use. The OpenMenu surface is read-only lookups, so you can allow just the operations a task needs, such as searching restaurants near a location with GET /location or reading a menu's nutrition with GET /menu_items and GET /ingredients, while withholding others like GET /deals or GET /trends. Your OpenMenu api_key is held by your Jentic One instance and injected only when a permitted operation runs.
For Agents
Search restaurants and menus, look up nutrition and ingredient data, and pull DishDNA ML-derived analytics on dishes and trends.
Use for: Search restaurants near a specific location, Find menu items containing a particular ingredient, Get the nutrition data for a named dish, List active deals at a chosen restaurant
Not supported: Does not handle order placement, delivery dispatch, or payment processing - use for restaurant menu, nutrition, and DishDNA analytics only.
OpenMenu provides a structured catalogue of restaurant menus, menu items, and nutritional and ingredient data, enriched with DishDNA machine-learning analysis. The API supports searching across restaurants, menus, and items, retrieving deals and trending dishes, and pulling location-based restaurant lists. Authentication is via an api_key query parameter, and the dataset spans both standard menu information and ML-derived analytics such as taxonomies, heatmaps, and trend signals.