Skip to main content
POST
/
api
/
yellowpages
/
businesses
/
reviews
/yellowpages/businesses/reviews
curl --request POST \
  --url https://api.anysite.io/api/yellowpages/businesses/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "business": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "YellowpagesReview",
    "rating": 123,
    "author": "<string>",
    "text": "<string>",
    "created_at": "<string>",
    "helpful_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
business
string
required

Yellow Pages business profile (MIP) URL or path

Minimum string length: 1
Examples:

"https://www.yellowpages.com/los-angeles-ca/mip/emergency-rooter-542379108"

"/los-angeles-ca/mip/ritz-plumbing-heating-air-electrical-9270807"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:YellowpagesReview
rating
number | null
author
string | null
text
string | null
created_at
string | null
helpful_count
integer | null