---
title: Generate Product Review Sentiment API
slug: generate-product-review-sentiment
url: https://apyhub.com/sharpapi/service/generate-product-review-sentiment
provider: SharpAPI
categories: [Artificial Intelligence, Smart Generation]
tags: [sentiment-analysis, review-analysis, text-classification, opinion-mining, async-jobs]
auth: api_key
---

# Generate Product Review Sentiment API

Analyze product review text asynchronously and get back a score and opinion. Useful for moderation, feedback triage, and sentiment dashboards.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/sharpapi/api/v1/ecommerce/review_sentiment` | What it does Submits an asynchronous job to analyze the sentiment of product review text provided i… | 50 |
| GET | `/sharpapi/api/v1/ecommerce/review_sentiment/job/status/:job_id` | What it does Retrieves the current status of a Generate Product Review Sentiment job by its jobid.… | 1 |

## About

## What it does
Review Sentiment Analysis scores product review text and returns the inferred opinion for each submitted job. Send a review in the `content` field, get back a `job_id` and `status_url`, then poll the job status endpoint until processing finishes.

The status response includes a `data` object with `id`, `type`, and `attributes`. Inside `attributes`, you can read the job `status`, the result `type`, and a `result` object containing `score` and `opinion` when the analysis is available.

Use Review Sentiment Analysis when you need to sort customer feedback into positive or negative buckets, flag reviews for moderation, or feed sentiment signals into reporting dashboards. It fits pipelines that process reviews at scale without requiring you to model the text yourself.

Because the service is asynchronous, it works well for batch submissions and background processing. Submit the text, track the job by UUID, and consume the result only when the status changes to a completed state.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/sharpapi/service/generate-product-review-sentiment
