Skip to main content
GET
/
integration
/
business-api
/
reviews
Get Business Reviews
curl --request GET \
  --url https://api.willro.com/api/v1/integration/business-api/reviews \
  --header 'x-api-key: <api-key>'
{
  "links": {
    "self": "/api/v1/integration/business-api/reviews?expand=&limit=10&page=1&q=&sortBy=createdAt&sortType=DESC",
    "next": "/api/v1/integration/business-api/reviews?expand=&limit=10&page=2&q=&sortBy=createdAt&sortType=DESC"
  },
  "pagination": {
    "page": 1,
    "limit": 10,
    "totalItems": 14,
    "totalPages": 2,
    "nextPage": 2
  },
  "data": [
    {
      "author": {
        "name": "Harry Pottesdjhgjk",
        "picture": "https://ik.imagekit.io/willro/cartoo-character-mypic_bceB6CpKB.png?fileId=6853c81fb13a102537629e41&fileType=image",
        "username": "harray99"
      },
      "feeling": "6827253aa294064355027215",
      "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",
      "business": {
        "businessName": "Willro update",
        "logo": "https://ik.imagekit.io/willro/profile-images/profile_1752056775480_alamin-blue-shirt_rzdJZMXor.jpeg?fileId=686e43c95c7cd75eb8b5ed7a&fileType=image",
        "website": "https://willro.com",
        "category": "finance",
        "averageRating": 4,
        "totalReview": 5
      },
      "reactions": 1,
      "topReactions": [
        "LOVE"
      ],
      "comments": 1,
      "shares": 1,
      "location": "Cox's Bazar",
      "medias": [
        {
          "id": "6869fbea6cd14e52a90a0642",
          "url": "https://example.com/image1.jpg",
          "thumbnailUrl": "https://example.com/thumb1.jpg",
          "type": "IMAGE",
          "fileName": "image1.jpg"
        }
      ]
    }
  ]
}

Get Business Reviews

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: http://89.116.25.99:4000/api/v1

Authentication

x-api-key
string
required
Your Willro API key. Find it in your Willro dashboard under Developer > API Keys.

Query Parameters

NameTypeRequiredDescription
pagenumberNoPage number for pagination (default: 1)
limitnumberNoNumber of reviews per page (default: 10)

Request Example

Authorizations

x-api-key
string
header
required

Use this API Key: willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030

Query Parameters

limit
integer
default:10

Number of reviews per page.

page
integer
default:1

Page number.

Response

Reviews retrieved.

pagination
object
data
object[]
Example:
[
{
"author": {
"name": "Harry Pottesdjhgjk",
"picture": "https://ik.imagekit.io/willro/cartoo-character-mypic_bceB6CpKB.png?fileId=6853c81fb13a102537629e41&fileType=image",
"username": "harray99"
},
"feeling": "6827253aa294064355027215",
"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",
"business": {
"businessName": "Willro update",
"logo": "https://ik.imagekit.io/willro/profile-images/profile_1752056775480_alamin-blue-shirt_rzdJZMXor.jpeg?fileId=686e43c95c7cd75eb8b5ed7a&fileType=image",
"website": "https://willro.com",
"category": "finance",
"averageRating": 4,
"totalReview": 5
},
"reactions": 1,
"topReactions": ["LOVE"],
"comments": 1,
"shares": 1,
"location": "Cox's Bazar",
"medias": [
{
"id": "6869fbea6cd14e52a90a0642",
"url": "https://example.com/image1.jpg",
"thumbnailUrl": "https://example.com/thumb1.jpg",
"type": "IMAGE",
"fileName": "image1.jpg"
}
]
}
]