POST
/
{endpoint}
-continues
/
reviews
Stream reviews in real-time using Server-Sent Events
curl --request POST \
  --url https://py-api.hobbo.ai/{endpoint}-continues/reviews \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>"
}'
"data: {\"review_rating\": 5, \"review_title\": \"Excellent service!\", \"review_text\": \"Great attorney, highly recommended.\"}}"

Path Parameters

endpoint
string
required

The scraper endpoint name (e.g., 'avvo', 'yelp', 'google', 'amazon'). This corresponds to any available review scraper in our system.

Example:

"https://py-api.hobbo.ai/avvo-continues/reviews"

Body

application/json
query
string<uri>
required

The URL of the page to scrape reviews from

Response

Reviews streamed successfully via Server-Sent Events. Each event contains review data as it becomes available.

Server-Sent Events stream containing review data chunks