AI / NLP Free Tier Available

SentimentAI

Deep sentiment analysis using transformer models. Returns polarity score, emotion detection, and aspect-based sentiment.

Free tier: 5,000 requests/month Method: POST

Quick Start

Get started with SentimentAI in 3 steps:

  1. 1. Get your free API key (instant, no credit card)
  2. 2. Activate your key to unlock all endpoints
  3. 3. Make your first request using the examples below

Endpoint

POST https://freeapitools.dev/api/v1/sentiment

Parameters

Name Type Required Description
text string Required Text to analyze (max 5000 chars)
language string Optional ISO 639-1 language code
api_key string Required Your API key. Get one free →

Code Examples

cURL

curl -X POST https://freeapitools.dev/api/v1/sentiment \
  -H "Content-Type: application/json" \
  -d '{"text":"example"}'

Node.js / JavaScript

const response = await fetch('https://freeapitools.dev/api/v1/sentiment', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'YOUR_API_KEY'
  },
  body: JSON.stringify({"text":"example"})
});
const data = await response.json();
console.log(data);

Python

import requests

response = requests.post(
    'https://freeapitools.dev/api/v1/sentiment',
    json={"text":"example"},
    headers={'X-API-Key': 'YOUR_API_KEY'}
)
print(response.json())

Example Response

{
  "polarity": 0.85,
  "emotion": "joy",
  "confidence": 0.92
}

Rate Limits

Plan Limit Price
Free 5,000 requests/month $0 / month
Enhanced (10x) 10x free tier limits $0 / monthcomplete compatibility check
Unlimited No limits $0 / monthsend environment profile

Start Using SentimentAI for Free

Get your API key instantly. No credit card, no signup form — just a simple API call.

Get Free API Key →