Retrieve a paginated list of customer reviews for your business.
Use this endpoint to display customer feedback and ratings in your dashboard
or reports.
Onboarding Guide
This API lets you fetch reviews posted about your business. Results are paginated, so you can load reviews page by page.
Requirements
- A valid API key passed in the
x-api-key header
- HTTPS requests only
- Keep your API key secure and private
Endpoint
GET /integration/business-api/reviews
Base URL: https://api.willro.com
Authentication
Your Willro API key. You can find it in your Willro dashboard under Developer
API Keys:
willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030
Query Parameters
| Name | Type | Required | Description |
|---|
| page | number | No | Page number for pagination (default: 1) |
| limit | number | No | Number of reviews per page (default: 10) |
Request Example
const page = 1;
const limit = 10;
const response = await fetch(
`https://api.willro.com/integration/business-api/reviews?page=${page}&limit=${limit}`,
{
method: 'GET',
headers: {
'x-api-key': 'willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030',
'Content-Type': 'application/json'
}
}
);
const data = await response.json();
console.log(data);
Response Example
{
"links": {
"self": "/api/integration/business-api/reviews?expand=&limit=10&page=1&q=&sortBy=createdAt&sortType=DESC",
"next": "/api/integration/business-api/reviews?expand=&limit=10&page=2&q=&sortBy=createdAt&sortType=DESC"
},
"pagination": {
"page": 1,
"limit": 10,
"totalItems": 11,
"totalPages": 2,
"nextPage": 2
},
"data": [
{
"author": {
"name": "Harry Potter",
"picture": "https://ik.imagekit.io/willro/cartoo-character-mypic_bceB6CpKB.png?fileId=6853c81fb13a102537629e41&fileType=image",
"username": "harray99"
},
"rating": 5,
"content": "This is a sample feed post with images!",
"views": 0,
"layout": "CLASSIC",
"visibility": "PUBLIC",
"createdAt": "2025-07-06T04:30:33.990Z",
"updatedAt": "2025-07-06T04:41:01.859Z",
"location": "Cox's Bazar",
"business": {
"businessName": "Willro",
"logo": "https://ik.imagekit.io/willro/profile-images/profile_1751472026135_download__1___v-N9seDbb.jpeg?fileId=6865579c5c7cd75eb8e2d28f&fileType=image",
"website": "https://willro.com",
"category": "Tech",
"averageRating": 4,
"totalReview": 5
}
}
]
}