Skip to main content
POST
/
api
/
yell
/
businesses
/yell/businesses
curl --request POST \
  --url https://api.anysite.io/api/yell/businesses \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "business": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "YellBusiness",
    "alias": "<string>",
    "tagline": "<string>",
    "description": "<string>",
    "category": "<string>",
    "rating": 123,
    "review_count": 123,
    "phone": "<string>",
    "phone_secondary": "<string>",
    "website": "<string>",
    "social_links": [],
    "opening_hours": [],
    "payment_methods": [],
    "services": [],
    "address": "<string>",
    "city": "<string>",
    "postcode": "<string>",
    "region": "<string>",
    "latitude": 123,
    "longitude": 123,
    "image": "<string>",
    "images": [],
    "reviews": [],
    "profile_url": "<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/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:YellBusiness
alias
string | null
tagline
string | null
description
string | null
category
string | null
rating
number | null
review_count
integer | null
phone
string | null
phone_secondary
string | null
website
string | null
opening_hours
object[]
payment_methods
string[]
services
string[]
address
string | null
city
string | null
postcode
string | null
region
string | null
latitude
number | null
longitude
number | null
image
string | null
images
string[]
reviews
object[]
profile_url
string | null