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

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
business
string
required

BBB business id (e.g. 0292-1922) or a BBB business profile URL

Minimum string length: 1
Examples:

"0292-1922"

"https://www.bbb.org/us/oh/cincinnati/profile/plumber/roto-rooter-plumbing-water-cleanup-0292-1922"

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:@bbb_review
rating
integer | null
author
string | null
text
string | null
created_at
string | null
business_response_text
string | null
business_response_date
string | null