Yelp Business Scraper
api.yelp.comExtracts business data from a Yelp URL using the Yelp Fusion API: name, rating, review count, price, categories, address, phone, hours, photos, and optional reviews. Requires a YELP_API_KEY passed as the api_key parameter.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is Yelp Business Scraper?
Extracts business data from a Yelp URL using the Yelp Fusion API: name, rating, review count, price, categories, address, phone, hours, photos, and optional reviews. Requires a YELP_API_KEY passed as the api_key parameter. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass url, api_key, include_reviews, review_limit and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"name": "<string>",
"alias": "<string>",
"hours": [
{
"day": "<string>",
"end": "<string>",
"start": "<string>",
"is_open_now": true,
"is_overnight": true
}
],
"phone": "<string>",
"price": "<string>",
"photos": [
"<string>"
],
"rating": 0,
"reviews": [
{
"url": "<string>",
"text": "<string>",
"author": "<string>",
"rating": 0,
"time_created": "<string>"
}
],
"location": {
"city": "<string>",
"state": "<string>",
"country": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip_code": "<string>",
"display_address": [
"<string>"
]
},
"image_url": "<string>",
"is_closed": true,
"attributes": {},
"categories": [
{
"alias": "<string>",
"title": "<string>"
}
],
"is_claimed": true,
"business_id": "<string>",
"coordinates": {},
"review_count": 0,
"transactions": [
"<string>"
],
"display_phone": "<string>",
"special_hours": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/d7af4e0d-7d59-400b-b7db-f4efd86cec7e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d7af4e0d-7d59-400b-b7db-f4efd86cec7e",
"variables": {
"url": "your-url",
"api_key": "your-api_key",
"include_reviews": True,
"review_limit": 3
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d7af4e0d-7d59-400b-b7db-f4efd86cec7e") — the "Yelp Business Scraper" function, which extracts business data from a Yelp URL using the Yelp Fusion API: name, rating, review count, price, categories, address, phone, hours, photos, and optional reviews. Requires a YELP_API_KEY passed as the api_key parameter.. It takes url (str), api_key (str), include_reviews (bool), review_limit (int). Return the result as structured JSON.