Skip to main content
POST
/
api
/
pagesjaunes
/
businesses
/
reviews
/pagesjaunes/businesses/reviews
curl --request POST \
  --url https://api.anysite.io/api/pagesjaunes/businesses/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "business": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "date_published"
}
'
[
  {
    "@type": "PagesJaunesReview",
    "id": "<string>",
    "author": "<string>",
    "rating": 123,
    "text": "<string>",
    "published_date": "<string>",
    "experience_date": "<string>",
    "rubric": "<string>",
    "owner_reply": "<string>",
    "like_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
business
string
required

PagesJaunes business id, or the full /pros/{id} URL

Minimum string length: 1
Example:

"51672428"

count
integer
required

Max number of reviews

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:date_published

Review ordering

Available options:
date_published,
rating,
date_experience

Response

Successful Response

@type
string
default:PagesJaunesReview
id
string | null
author
string | null
rating
number | null
text
string | null
published_date
string | null
experience_date
string | null
rubric
string | null
owner_reply
string | null
like_count
integer | null