---
title: Generate Travel Review Sentiment API
slug: generate-travel-review-sentiment
url: https://apyhub.com/sharpapi/service/generate-travel-review-sentiment
provider: SharpAPI
categories: [Artificial Intelligence, Smart Generation, Travel]
auth: api_key
---

# Generate Travel Review Sentiment API

Analyze travel review text asynchronously and get a sentiment score with POSITIVE or similar opinion output. Useful for feedback triage and review analytics.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/sharpapi/api/v1/tth/review_sentiment` | What it does Submits review text for asynchronous travel-review sentiment analysis. The request bod… | 50 |
| GET | `/sharpapi/api/v1/tth/review_sentiment/job/status/:job_id` | What it does Checks the status of a travel review sentiment analysis job by its jobid and returns t… | 1 |

## About

## What it does
Travel Review Sentiment analyzes review text and returns a sentiment classification for travel feedback. Send a `content` string in the request body, get back a `job_id` and `status_url`, then poll the job status endpoint until the result is ready.

Use it when you need to triage hotel, airline, tour, or destination reviews without reading every comment manually. The workflow is asynchronous, so it fits longer text or batch-style review processing where you submit a job first and check results later.

When the job completes successfully, the status response includes a `data` object with `id`, `type`, and `attributes`. Inside `attributes`, you get the job `status` plus a `result` object containing a numeric `score` and an `opinion` value such as `POSITIVE`. That makes it straightforward to route highly negative reviews to support, summarize customer feedback, or score destination sentiment in an analytics pipeline.

Travel Review Sentiment is a good fit for travel platforms, feedback dashboards, reputation monitoring, and moderation workflows that only need a compact sentiment result rather than full text analysis.

## Usage

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