Yelp
Yelp's own business search — returns real, currently-listed businesses for a search term and location with Yelp's own star rating, review count, price…
Yelp's own business search — returns real, currently-listed businesses for a search term and location with Yelp's own star rating, review count, price tier and neighborhood.
Domain: yelp.com
Also known as: Yelp
Call it directly
bowmark.providers.yelp.search(args: YelpSearchArgs): Promise<YelpSearchResult[]>Functions
| Function | What it does |
|---|---|
search | Runs Yelp's own business search for a term and location and returns real, currently-listed businesses with Yelp's own rating, review count, price tier and neighborhood. |
Types
interface YelpSearchArgs {
term: string; // e.g. "ramen" — Yelp's own find_desc
location: string; // e.g. "Philadelphia, PA" — Yelp's own find_loc
limit?: number; // default 10, clamped to [1, 30]
}
interface YelpSearchResult {
name: string;
url: string;
rating: number | null;
reviewCount: number | null;
priceRange: string | null; // "$".."$$$$", or null
neighborhood: string | null;
}