Discover/Yelp API
live

Yelp APIyelp.com

Access Yelp business listings, details, hours, phone, website, photos, ratings, and reviews via a structured API. Search by keyword and location.

Endpoint health
verified 19h ago
search_businesses
get_business_details
get_business_photos
3/3 passing latest checkself-healing
Endpoints
3
Updated
22d ago

What is the Yelp API?

The Yelp API exposes 3 endpoints covering business search, full business profiles, and photo galleries. Use search_businesses to query businesses by keyword and location, retrieving up to 15 results per page with fields like rating, review_count, price_range, categories, and address. Switch to get_business_details for a single business's phone, website, hours, and summary, or get_business_photos to pull all user-contributed photos with captions and labels.

Try it
Search keyword (e.g. 'pizza', 'plumber', 'coffee')
Result offset for pagination. Each page returns ~15 results; use start=0, 10, 20, etc. to paginate.
Sort order for results
City, state, or ZIP code (e.g. 'New York, NY', 'San Francisco', '10001')
api.parse.bot/scraper/7e1332d8-dfa5-4fb0-9297-f9bf1c71543c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7e1332d8-dfa5-4fb0-9297-f9bf1c71543c/search_businesses?query=coffee&start=0&sort_by=best_match&location=San+Francisco%2C+CA' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace yelp-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Yelp SDK — search businesses, drill into details, browse photos."""
from parse_apis.yelp_api import Yelp, Sort, BusinessNotFound

client = Yelp()

# Search for businesses by keyword and location, sorted by rating.
for biz in client.businesssummaries.search(query="coffee", location="San Francisco, CA", sort_by=Sort.RATING, limit=5):
    print(biz.name, biz.rating, biz.categories)

# Drill into the first result for full details.
summary = client.businesssummaries.search(query="pizza", location="New York, NY", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.phone, detail.website, detail.is_closed)

    # Browse photos for that business via its sub-resource.
    for photo in detail.photos.list(limit=3):
        print(photo.caption, photo.url)

# Typed error handling: catch a not-found business.
try:
    missing = client.business("nonexistent-biz-slug-12345").photos.list(limit=1).first()
except BusinessNotFound as exc:
    print(f"Business not found: {exc.biz_id}")

print("exercised: businesssummaries.search / details / photos.list / BusinessNotFound")
All endpoints · 3 totalmissing one? ·

Search for businesses by keyword and location. Returns up to ~15 businesses per page. Offset-based pagination via the start parameter; each page returns a businesses array. The total field reports the count of items in the current page, not total results available.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g. 'pizza', 'plumber', 'coffee')
startintegerResult offset for pagination. Each page returns ~15 results; use start=0, 10, 20, etc. to paginate.
sort_bystringSort order for results
locationrequiredstringCity, state, or ZIP code (e.g. 'New York, NY', 'San Francisco', '10001')
Response
{
  "type": "object",
  "fields": {
    "query": "search keyword echoed back",
    "total": "integer count of businesses returned in this page",
    "location": "location echoed back",
    "businesses": "array of business summary objects"
  }
}

About the Yelp API

Search and Browse Businesses

search_businesses accepts two required parameters — query (e.g. 'sushi', 'electrician') and location (city name, state, or ZIP code) — and returns an array of business summary objects. Each object includes id, alias, name, rating, review_count, price_range, categories, address, neighborhoods, and a direct url. Pagination is handled via the start offset parameter, and results can be sorted by best_match, rating, review_count, or distance.

Business Details

get_business_details takes a biz_id (the alias/URL slug, e.g. gary-danko-san-francisco) and returns a single business object. Fields include phone, website, price_range, categories, summary, address, city, state, rating, and review_count. Hours of operation are also included when available. The alias needed here can be obtained directly from the businesses array returned by search_businesses.

Photos

get_business_photos accepts the same biz_id slug and returns all available user-contributed photos for that business. Each photo object contains a url, caption, encid, and label (e.g. food, interior, exterior). This endpoint is useful for building visual directories or enriching business profiles without making multiple page-level requests.

Coverage Notes

Business coverage mirrors what Yelp indexes publicly, which is strongest for US businesses but includes many international listings. Data freshness reflects the current state of each business page. Review text is not returned by any endpoint — only aggregate rating and review_count are exposed in the current API.

Reliability & maintenanceVerified

The Yelp API is a managed, monitored endpoint for yelp.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when yelp.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official yelp.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
19h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a local business directory filtered by category, price range, and neighborhood using search_businesses fields.
  • Enrich a CRM or lead list with business phone numbers, websites, and hours via get_business_details.
  • Populate a restaurant-finder app with ratings, review counts, and cuisine categories from search results.
  • Aggregate user-contributed photos for a venue using get_business_photos captions and labels.
  • Monitor rating and review count changes for competitor businesses over time.
  • Generate structured business profiles for marketing or sales prospecting using address, category, and website fields.
  • Power a map-based UI with address and neighborhood data from paginated search_businesses results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Yelp have an official developer API?+
Yes. Yelp offers the Yelp Fusion API at https://docs.developer.yelp.com/. It requires registration and has its own access tiers and rate limits. This Parse API covers business search, details, and photos without requiring a Yelp developer account.
What does `get_business_details` return beyond what the search endpoint provides?+
search_businesses returns summary fields like name, rating, price_range, categories, and address. get_business_details adds phone, website, hours, and a text summary for a single business. Both share the alias identifier, so the typical workflow is to search first, then fetch details for selected results.
Does the API return individual review text?+
Not currently. Endpoints return aggregate rating and review_count but not individual review content, reviewer names, or review dates. You can fork this API on Parse and revise it to add a review-fetching endpoint.
How does pagination work in `search_businesses`?+
The start parameter controls the result offset. Each page returns up to 15 businesses, and total in the response tells you how many were returned in the current page. To retrieve the next page, increment start by 15.
Are claimed business attributes like amenities or menu links included?+
Not currently. The API covers core fields — contact info, hours, categories, ratings, and photos. Structured attributes such as amenities, menu URLs, or health inspection data are not exposed. You can fork this API on Parse and revise it to add those fields if they appear on the business page.
Page content last updated . Spec covers 3 endpoints from yelp.com.
Related APIs in Reviews RatingsSee all →
m.yelp.com API
Search for businesses and read detailed reviews on Yelp, then get autocomplete suggestions to find exactly what you're looking for. Access comprehensive business information including ratings, hours, and customer feedback all in one place.
yelp.com.au API
Search and compare businesses across Yelp Australia by location. Retrieve detailed business information including ratings, categories, and contact details, and access paginated customer reviews with author profiles and rating distributions.
yellowpages.com API
Search and retrieve business listings, contact info, hours, categories, and customer reviews from YellowPages.com. Browse by category or location across the US.
yellowpages.ca API
Search for businesses across Canada and retrieve detailed information including contact details, ratings, reviews, and website data. Supports keyword and location-based discovery of local businesses for research, analysis, and data enrichment use cases.
bbb.org API
bbb.org API
yellowpages.com.au API
Search Australian businesses by category to find contact details, addresses, and emails, then retrieve comprehensive business information for any listing. Perfect for building lead lists, verifying business information, or discovering local service providers across Australia.
gelbeseiten.de API
Search for businesses on Gelbe Seiten (gelbeseiten.de) by keyword and location, and retrieve full business details including contact information, opening hours, categories, and reviews.
yandex.ru API
Search for businesses on Yandex Maps and instantly access their names, addresses, phone numbers, websites, social media links, hours of operation, and categories. Get detailed company information to find local services, verify business details, or build comprehensive business directories.