Skip to main content
GET
/
api
/
enterprise
/
company
/
product-reviews
Product Reviews
curl --request GET \
  --url https://api.wokelo.ai/api/enterprise/company/product-reviews/ \
  --header 'Authorization: Bearer <token>'
{
    "status": "success",
    "data": {
        "company": "salesforce",
        "product_name": "Slack",
        "rating": 4.5,
        "star_distribution": {
            "1": 128,
            "2": 270,
            "3": 1239,
            "4": 7083,
            "5": 25056
        },
        "reviews": [
            {
                "review_id": 10674077,
                "review_title": "Easy to use enterprise communication platform"
            }
        ]
    }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wokelo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Retrieves paginated product reviews for a specified company, supporting configurable result limits and offsets for efficient data navigation. Returns a structured list of product reviews.

Endpoint Details

  • Method: GET
  • Endpoint: /api/enterprise/company/product-reviews/

Authentication requirements

  • Include a valid JWT token in your request header
  • If you don’t have a token yet, you can get one from the /auth/token/ endpoint first.

Request

Request Parameters

Header Parameters

Authorization
string
required
JWT token obtained from the Authentication request

URL Parameters

company
string
required
Permalink of the company whose product reviews need to be fetched E.g. "salesforce"
limit
integer
Maximum number of product reviews to return
offset
integer
Number of records to skip before starting to return results

Response

Successful response will have status as “success”. Results are returned in the response.
{
    "status": "success",
    "data": {
        "company": "salesforce",
        "product_name": "Slack",
        "rating": 4.5,
        "star_distribution": {
            "1": 128,
            "2": 270,
            "3": 1239,
            "4": 7083,
            "5": 25056
        },
        "reviews": [
            {
                "review_id": 10674077,
                "review_title": "Easy to use enterprise communication platform"
            }
        ]
    }
}

Authorizations

Authorization
string
header
required

JWT token obtained from the /auth/token/ endpoint.

Query Parameters

company
string
required

Company permalink or URL (e.g., salesforce)

limit
integer
default:100
offset
integer
default:0

Response

200

Product reviews returned