Try any of 1042 endpoints — live.
Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.
Get a restaurant's popular dishes from Yelp — the 'Popular dishes' section shown on the Yelp business page — returning each dish's name and photo. Identify the restaurant by its Yelp business URL, its Yelp business ID (from the search or business details actions), or its Yelp slug. Restaurant pages only; returns an empty list when Yelp shows no popular dishes for that restaurant.
The restaurant's Yelp business page URL (any yelp.com/biz/… link). Provide this OR business_id OR slug.
The restaurant's Yelp business ID — as returned by the search or business/details actions (e.g. v1DHGRNCH9247WLYoaoA9A).
The restaurant's Yelp slug (the part after /biz/ in the URL).
Max dishes to return (1–50). (1–50)
curl -X POST https://api.reefapi.com/yelp/v1/popular_dishes \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{}'Hit Send to run this endpoint live.