Travel Review Sentiment Checker API - AI Sentiment Analysis             [ A2Z Web ![A2Z Web logo](https://sharpapi.com/storage/22130/conversions/a2z-logo-96-transparent-full_size.jpg) ](/)  Open main menu    

  API Catalog      

 [ E-commerce  ](/en/catalog/ai/e-commerce)APIs to streamline every aspect of e-commerce, from product details to customer engagement.

 [ Content &amp; Marketing Automation  ](/en/catalog/ai/content-marketing-automation)Automation tools for efficient content creation, audience engagement, moderation and marketing workflows.

 [ HR Tech  ](/en/catalog/ai/hr-tech)APIs designed to simplify recruitment, resume parsing, skill-matching, and candidate evaluation.

 [ Travel, Tourism &amp; Hospitality  ](/en/catalog/ai/travel-tourism-hospitality)Tools to enhance travel and hospitality services, from customer insights to product organization.

 [ SEO  ](/en/catalog/ai/seo)Solutions to automate your SEO essentials, including tags and metadata management.

 [ Accounting &amp; Finance  ](/en/catalog/ai/accounting-finance)AI endpoints for invoice processing, receipt parsing, and financial document analysis.

 [ Utility APIs  ](/en/catalog/utility)Robust databases and tools for enhancing applications with Travel &amp; HR industry-specific data.

 [ Pricing ](/en/pricing) [ Sign up → ](https://sharpapi.com/ref/sharpapi_tchzrx3s) 

 [ A2Z Web ![A2Z Web logo](https://sharpapi.com/storage/22130/conversions/a2z-logo-96-transparent-full_size.jpg) ](/)  Close menu    

  API Catalog    [ E-commerce ](/en/catalog/ai/e-commerce) [ Content &amp; Marketing Automation ](/en/catalog/ai/content-marketing-automation) [ HR Tech ](/en/catalog/ai/hr-tech) [ Travel, Tourism &amp; Hospitality ](/en/catalog/ai/travel-tourism-hospitality) [ SEO ](/en/catalog/ai/seo) [ Accounting &amp; Finance ](/en/catalog/ai/accounting-finance) [ Utility APIs ](/en/catalog/utility) 

 [ Pricing ](/en/pricing) [ Sign up → ](https://sharpapi.com/ref/sharpapi_tchzrx3s) 

 1. [    Home ](https://workflows.a2zweb.co/en)
2. [APIs Catalog](https://workflows.a2zweb.co/en/catalog)
3. [Travel, Tourism &amp; Hospitality](https://workflows.a2zweb.co/en/catalog/ai/travel-tourism-hospitality)
4. [Travel Review Sentiment Checker](https://workflows.a2zweb.co/en/catalog/ai/travel-tourism-hospitality/travel-review-sentiment-checker)

  [ Travel, Tourism &amp; Hospitality ](https://workflows.a2zweb.co/en/catalog/ai/travel-tourism-hospitality)

  AI-powered API  

 Travel Review Sentiment Checker 
=================================

 Parses the Travel/Hospitality product review and provides its sentiment with a score between 0-100%. 
------------------------------------------------------------------------------------------------------

Parses the Travel/Hospitality product review and provides its sentiment (`POSITIVE`/`NEGATIVE`/`NEUTRAL`) with a score between 0-100%.

Ideal for developers working on travel platforms, review aggregators, or customer feedback systems. It automates the analysis of travel reviews, helping businesses understand customer experiences and improve their services. Use cases include generating sentiment reports, enhancing travel recommendations, and improving customer satisfaction by addressing negative feedback.

Great for sentiment report processing for any online travel agency.

### AI jobs involve two key steps:

1. **Submitting the AI job:** Initiating the process by sending the job request.
2. **Monitoring and receiving results:** Continuously checking the job status and obtaining the final output upon successful completion.

---

### Related SDKs/Libraries

- Laravel 

     [ Travel Review Sentiment Checker for Laravel   ](https://github.com/sharpapi/laravel-tth-review-sentiment)
- Node.js 

     [ Travel Review Sentiment for Node.js   ](https://www.npmjs.com/package/@sharpapi/sharpapi-node-travel-review-sentiment)
- PHP 

     [ Travel Review Sentiment Analysis for PHP 8 - AI-Powered Review Analysis   ](https://github.com/sharpapi/php-travel-review-sentiment)

---

 ![Travel Review Sentiment Checker](https://sharpapi.com/storage/234/conversions/Travel---Travel-Review-Sentiment-Checker-%28AI%29-full_size.jpg) [     Check API Details Documentation   Check API Details Documentation ](https://documenter.getpostman.com/view/31106842/2s9Ye8faUp#0b9c4e2c-292d-47fe-a974-16619da147e4) 

 [ ![SharpAPI SOC 2 Type II](/build/assets/resources/images/a2zweb-soc2-Cb6pM2no.png) ](https://trust.a2zweb.co/) SharpAPI is now SOC 2 Type II compliant. You can check details at our [ Trust Center Portal. ](https://trust.a2zweb.co/)

 Your data is your data. Learn how we protect it and comply with global privacy standards in our [ Data Handling and Compliance policy ](https://sharpapi.com/data-handling-and-compliance).

Step 1. Submit the AI Job request
---------------------------------

**Endpoint:** `POST - /api/v1/tth/review_sentiment`

AttributeTypeMandatoryDescriptioncontentStringYesProvide Review text to analyze the sentiment.---

**REQUEST EXAMPLE:**

```
{
  "content": "We had a great stay at the Jen Orchard!! Super comfortable rooms and beds. The delicious and extensive breakfast buffet is absolutely worth it as well. The pool is really cool and offers amazing views. We didn't get to enjoy it as much as we wanted due to thunderstorms, but you can even stay here if you have a late flight, which we had. The changing rooms have free lockers that easily fit your hand luggage and there are showers to freshen up and change before leaving for the airport. Location is perfect, right above an MRT station. Staff is really friendly. Would definitely stay here again when in Singapore."
}

```

**RESPONSE EXAMPLE:**

```
{
  "status_url": "https://sharpapi.com/api/v1/content/translate/job/status/5de4887a-0dfd-49b6-8edb-9280e468c210",
  "job_id": "5de4887a-0dfd-49b6-8edb-9280e468c210"
}

```

---

Step 2. Monitor &amp; Fetch AI Job Results
------------------------------------------

**Endpoint:** `GET - /api/v1/tth/review_sentiment/job/status/:uuid`

An endpoint is used to check on the progress of the requested API job.

**RESULT EXAMPLE:**

```
{
    "data": {
        "type": "api_job_result",
        "id": "065c36a4-56a8-4af0-bb2b-5a62ae67d404",
        "attributes": {
            "status": "success",
            "type": "tth_review_sentiment",
            "result": {
                "opinion": "POSITIVE",
                "score": 95,
                "emotion": "delight",
                "urgency": "none",
                "topics": [
                    {
                        "topic": "room_comfort",
                        "sentiment": "positive",
                        "mention_count": 2
                    },
                    {
                        "topic": "breakfast_buffet",
                        "sentiment": "positive",
                        "mention_count": 1
                    },
                    {
                        "topic": "pool",
                        "sentiment": "positive",
                        "mention_count": 1
                    },
                    {
                        "topic": "location",
                        "sentiment": "positive",
                        "mention_count": 1
                    },
                    {
                        "topic": "staff_friendliness",
                        "sentiment": "positive",
                        "mention_count": 1
                    }
                ],
                "loyalty_signal": "promoter",
                "recommended_action": "highlight_positive",
                "language": "en",
                "travel_category": "accommodation"
            }
        }
    }
}

```

- Related Keywords:
- [ Travel APIs ](https://workflows.a2zweb.co/en/tag/travel-apis)
- [ Travel ](https://workflows.a2zweb.co/en/tag/travel)
- [ Sentiment ](https://workflows.a2zweb.co/en/tag/sentiment)
- [ OTA ](https://workflows.a2zweb.co/en/tag/ota)
- [ Hospitality ](https://workflows.a2zweb.co/en/tag/hospitality)
- [ Reviews ](https://workflows.a2zweb.co/en/tag/reviews)
- [ Tourism ](https://workflows.a2zweb.co/en/tag/tourism)
- [ Feedback ](https://workflows.a2zweb.co/en/tag/feedback)

###  Other Travel, Tourism &amp; Hospitality APIs 

- [   

     Hospitality Product Categorization ](https://workflows.a2zweb.co/en/catalog/ai/travel-tourism-hospitality/hospitality-product-categorization)
- [   

     Tours &amp; Activities Product Categorization ](https://workflows.a2zweb.co/en/catalog/ai/travel-tourism-hospitality/tours-activities-product-categorization)

   [ ![SOC 2 Type II](/build/assets/resources/images/a2zweb-soc2-Cb6pM2no.png) ](https://trust.a2zweb.co/)We're SOC 2 Type II certified!

 Simply put, your data is in safe hands, and you can count on us to stay secure. Check the details at our [Trust Portal](https://trust.a2zweb.co/).

 © 2026 A2Z Web · Powered by [ ![SharpAPI logo](/build/assets/resources/images/logo200-C65na0V3.png) SharpAPI ](https://sharpapi.com/)
