# Arabic Sentiment Analysis API

> Arabic Sentiment Analysis API is a paid API for AI agents from x402-apis-eta.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Analyzes sentiment (positive, negative, neutral) of Arabic text using a pay-per-request micropayment model via x402 protocol

## Facts

- Endpoint: POST https://x402-apis-eta.vercel.app/api/arabic/sentiment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arabic-sentiment-analysis-api-5f973c9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dLUnKjpSkJljjbCIxCC4e

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 arabic-sentiment-analysis-api-5f973c9c -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this Arabic text and tell me if it's positive, negative, or neutral: "هذا المنتج رائع جداً وأنصح به الجميع"?

## When to prefer this

Choose this endpoint when you need sentiment analysis specifically for Arabic-language text without wanting to manage API keys or monthly subscriptions — ideal for low-volume, pay-as-you-go use cases where micropayments per call at $0.01 USDC are acceptable. Prefer this over general-purpose NLP APIs when Arabic language support is the primary requirement.

## Known failure modes

- Missing 'text' field in request body returns 400 validation error
- Non-Arabic or empty text may return unexpected results or low-confidence classification
- Payment failure via x402 protocol returns 402 Payment Required
- Rate limiting or server unavailability returns 503
- Very long text inputs may be truncated or rejected

## How this service works

AI-agent-friendly APIs with instant micropayments via x402 protocol. No API keys, no accounts - just pay and access.

## Output

Returns a sentiment classification (positive, negative, or neutral) for the provided Arabic text, likely including a confidence score or polarity value indicating the strength and direction of the detected sentiment.

## Example request

```json
{
 "text": "هذا المنتج رائع جداً وأنصح به الجميع"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Arabic text to analyze"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arabic-sentiment-analysis-api-5f973c9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-apis-eta.vercel.app](https://www.zero.xyz/host/x402-apis-eta.vercel.app/llms.txt)
