curl --request POST \
--url https://api.hobbo.ai/pipedrive/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"filter_type": 123,
"pagination_token": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"query": "<string>",
"review_id": "<string>",
"review_rating": 123,
"review_text": "<string>",
"review_date": "<string>",
"clientId": "<string>",
"updated_date": "<string>",
"author_id": "<string>",
"author_name": "<string>",
"auhtor_profile_image_url": "<string>",
"commentsCount": 123,
"review_reply": {
"reply_text": "<string>",
"reply_id": "<string>",
"reply_date": "<string>",
"replier_role": "<string>",
"reply_updated_date": "<string>"
}
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}This endpoint is used to fetch reviews from pipedrive for a specified business.
curl --request POST \
--url https://api.hobbo.ai/pipedrive/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"filter_type": 123,
"pagination_token": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"query": "<string>",
"review_id": "<string>",
"review_rating": 123,
"review_text": "<string>",
"review_date": "<string>",
"clientId": "<string>",
"updated_date": "<string>",
"author_id": "<string>",
"author_name": "<string>",
"auhtor_profile_image_url": "<string>",
"commentsCount": 123,
"review_reply": {
"reply_text": "<string>",
"reply_id": "<string>",
"reply_date": "<string>",
"replier_role": "<string>",
"reply_updated_date": "<string>"
}
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}pipedrive review scraping parameters
Provide proper Pipedrive review url.
Number of reviews to fetch (default: all reviews, or within 30-second timeout)
Filter type for reviews
The next_page received with the past request, which is required for the pagination
returns the review text with visual formatting preserved
Fetches reviews posted on a specific date using format: YYYY-MM-DD
Reviews fetched successfully
Array of fetched reviews
Show child attributes
Original query URL
ID of the review
Rating given in the review
Content of the review
Date when the review was posted
Client ID associated with the review
Date when the review was last updated
ID of the review author
Name of the review author
Profile image URL of the review author
Number of comments on the review
Reply to the review if available
Show child attributes
Text content of the reply
ID of the reply
Date of the reply
Role of the person who replied
Date when the reply was last updated
Status message about the review extraction