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

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
business
string
required

Yell business profile URL or path

Minimum string length: 1
Examples:

"https://www.yell.com/biz/v-i-hains-plumbing-and-gas-services-ltd-london-7514839/"

"/biz/plumbingforce-whyteleafe-8359634/"

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:YellReview
author
string | null
rating
number | null
text
string | null
created_at
string | null
business_response
string | null
business_response_at
string | null