← ClaudeAtlas

restaurant-food-delivery-researchlisted

Researches restaurants and grocery/food delivery via the Crawlora API — Yelp reviews, OpenTable reservations, DoorDash and Uber Eats restaurant search/menus, and Instacart grocery search — returning clean JSON. Use when the user wants restaurant reviews or menus, delivery options near a location, or grocery product/store search.
Crawlora-org/crawlora-skills · ★ 0 · API & Backend · score 72
Install: claude install-skill Crawlora-org/crawlora-skills
# Restaurant & food-delivery research Look up restaurant reviews, reservations, and delivery menus, plus grocery search, across five platforms as normalized JSON from the Crawlora API — no scraping delivery-app pages. ## When to use this skill - "What are the reviews / menu for this restaurant?" (Yelp, OpenTable) - "Can I book a table at <restaurant>?" (OpenTable availability) - "What's available for delivery near me?" (DoorDash, Uber Eats) - "What's on this restaurant's delivery menu / what does this dish cost?" - "Search groceries at this Instacart store." ## Setup (one-time) - Get a free Crawlora API key (2,000 credits/mo, no card) at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills). - `export CRAWLORA_API_KEY=sk_your_key_here` - All requests: `x-api-key: $CRAWLORA_API_KEY` against `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`. ## How it works Most of these platforms are **location-scoped** — every search/store call needs a `latitude`/`longitude` (or `postal_code`), not just a keyword. 1. **Yelp** — `/yelp/search` (`term`+`location`) or geocode an address first with `/yelp/geocode`; `/yelp/business/{id}` for detail, `/reviews` (+ `/reviews/search`, `/reviews/highlights`), `/menu`, `/photos`. 2. **OpenTable** — `/opentable/search` (`term`+`latitude`+`longitude`) to find a restaurant, then `/opentable/restaurant` (`restaurant_id`, optional `date_time`+`party_size` for availa