About this endpoint
What it does
Submits an asynchronous job to analyze the sentiment of product review text provided in the request body. The response returns the job identifier and a status URL so you can check progress later.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| content | String | Yes | Provide review text to analyze the sentiment. |
Response
Returns a JSON object with required job_id and status_url string fields. job_id is the identifier of the submitted asynchronous job, and status_url is the URL used to check the submitted job status.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| job_id | String | Yes | Identifier of the submitted asynchronous job. UUID format. |
| status_url | String | Yes | URL used to check the submitted job status. URI format. |
Notes
This endpoint kicks off an async job and returns immediately with a job identifier; the actual work runs in the background. Pair this call with the corresponding job check endpoint — poll that until the status reaches a terminal state to retrieve the result. Extract the job identifier from job_id and use the returned status_url to check progress.