Skip to main content
POST
/
api
/
avvo
/
lawyers
/
reviews
/avvo/lawyers/reviews
curl --request POST \
  --url https://api.anysite.io/api/avvo/lawyers/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "lawyer": "<string>",
  "count": 2,
  "timeout": 300,
  "rating": 3
}
'
[
  {
    "id": "<string>",
    "@type": "AvvoLawyerReview",
    "author": "<string>",
    "rating": 123,
    "review_title": "<string>",
    "text": "<string>",
    "created_at": "<string>",
    "is_hired": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
lawyer
string
required

Avvo attorney id (e.g. 1625117), profile slug or profile URL

Minimum string length: 1
Example:

"1625117"

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
rating
integer | null

Only reviews with this star rating (1-5)

Required range: 1 <= x <= 5
theme
enum<string> | null

Only reviews mentioning this aspect (e.g. Case Results, Communication Style)

Available options:
Case Results,
Advocacy,
Practice Area Knowledge,
Recommendation,
Professionalism,
Communication Style,
Compassion,
Responsiveness,
General Knowledge,
Character & Conduct,
Cost of Services,
Trustworthiness,
Staff & Support,
Free Consultations,
Payment Plans,
Punctuality

Response

Successful Response

id
string
required
@type
string
default:AvvoLawyerReview
author
string | null
rating
integer | null
review_title
string | null
text
string | null
created_at
string | null
is_hired
boolean | null