Yelp
Overview
Local business discovery platform — search businesses, autocomplete suggestions, read reviews. Commerce archetype.
Workflows
Search for local businesses
autocompleteBusinesses(prefix, loc) → suggestions with query
searchBusinesses(find_desc, find_loc) → business list with name, rating, address
Browse by location
searchBusinesses(find_desc, find_loc) → results with bizId, alias, categories
- Paginate with
start param (10 results per page)
Operations
| Operation |
Intent |
Key Input |
Key Output |
Notes |
| autocompleteBusinesses |
typeahead suggestions |
prefix, loc |
title, query, subtitle, type |
entry point; node transport |
| searchBusinesses |
search businesses by keyword + location |
find_desc, find_loc |
name, rating, reviewCount, categories, address |
entry point; adapter (browser); paginated (start); currently blocked by DataDome |
Quick Start
# Autocomplete suggestions
openweb yelp exec autocompleteBusinesses '{"prefix": "piz", "loc": "San Francisco, CA"}'
# Search for businesses
openweb yelp exec searchBusinesses '{"find_desc": "pizza", "find_loc": "San Francisco, CA"}'
# Paginate search results (page 2)
openweb yelp exec searchBusinesses '{"find_desc": "pizza", "find_loc": "San Francisco, CA", "start": 10}'
1---2name: yelp3description: Yelp4---5# Yelp67## Overview8Local business discovery platform — search businesses, autocomplete suggestions, read reviews. Commerce archetype.910## Workflows1112### Search for local businesses131. `autocompleteBusinesses(prefix, loc)` → suggestions with `query`142. `searchBusinesses(find_desc, find_loc)` → business list with `name`, `rating`, `address`1516### Browse by location171. `searchBusinesses(find_desc, find_loc)` → results with `bizId`, `alias`, `categories`182. Paginate with `start` param (10 results per page)1920## Operations2122| Operation | Intent | Key Input | Key Output | Notes |23|-----------|--------|-----------|------------|-------|24| autocompleteBusinesses | typeahead suggestions | prefix, loc | title, query, subtitle, type | entry point; node transport |25| searchBusinesses | search businesses by keyword + location | find_desc, find_loc | name, rating, reviewCount, categories, address | entry point; adapter (browser); paginated (start); currently blocked by DataDome |2627## Quick Start2829```bash30# Autocomplete suggestions31openweb yelp exec autocompleteBusinesses '{"prefix": "piz", "loc": "San Francisco, CA"}'3233# Search for businesses34openweb yelp exec searchBusinesses '{"find_desc": "pizza", "find_loc": "San Francisco, CA"}'3536# Paginate search results (page 2)37openweb yelp exec searchBusinesses '{"find_desc": "pizza", "find_loc": "San Francisco, CA", "start": 10}'38```