# Travel Review Sentiment Analysis (Async)

> Travel Review Sentiment Analysis (Async) is a paid API for AI agents from x402.slinkylayer.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Submits a travel review text for asynchronous sentiment analysis, returning a job ID to poll for the sentiment result.

## Facts

- Endpoint: POST https://x402.slinkylayer.ai/api/v1/proxy/abb9ecc5-b73d-4b82-b9dd-5bfbb794c1ea/tth-review-sentiment
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-slinkylayer-ai-153d4552
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_siBvnTkne_RjXnW-NMCKx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-slinkylayer-ai-153d4552 -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this travel review for me: 'The hotel had breathtaking ocean views and impeccable service, but the check-in process was frustratingly slow and the room smelled musty.'

## When to prefer this

Use this endpoint when you need to analyze sentiment specifically for travel-domain reviews (hotels, resorts, airlines, vacation rentals) and can tolerate an asynchronous response pattern — submit the review, then poll for the result using the returned job ID. Prefer this over synchronous alternatives when processing longer reviews or when the travel-specific context matters for sentiment accuracy.

## Known failure modes

- Missing required 'content' field returns validation error
- Empty string content may return error or low-confidence result
- Very long review text may exceed payload limits
- Job ID polling endpoint unavailable leading to unresolvable async result
- Payment failure via x402 protocol blocks request
- Network timeout before job submission completes

## How this service works

Submit a travel review for sentiment analysis. Returns a job identifier that can be used to query the job status and retrieve the sentiment result.

## Output

Returns a job identifier (job ID) that can be used to poll a separate status endpoint to retrieve the completed sentiment analysis result for the submitted travel review text.

## Example request

```json
{
 "content": "The hotel had breathtaking ocean views and impeccable service, but the check-in process was frustratingly slow and the room smelled musty."
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "content"
 ],
 "properties": {
  "content": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "input": {
  "type": "http",
  "method": "POST",
  "bodyType": "json",
  "bodyFields": {
   "content": {
    "type": "string",
    "required": true
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-slinkylayer-ai-153d4552/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.slinkylayer.ai](https://www.zero.xyz/host/x402.slinkylayer.ai/llms.txt)
