Fast and Accurate Sentiment Analysis

Analyze Text Sentiment in Seconds with Our Advanced API

Accurate Sentiment Detection

Precisely categorize text as positive, neutral, or negative

Gain deeper understanding of customer emotions

Bulk Analysis

Analyze up to 1000 messages per request

Perfect for social media, customer feedback, and more

See It In Action

This product exceeds my expectations!|
Positive

How It Works

  1. Sign up for our Sentiment Analysis API key
  2. Send your text data to our Sentiment Analysis API
  3. Receive detailed sentiment scores and categorizations in real-time

Quick Start Guide

Get started with our Sentiment Analysis API in just a few steps:

  1. Sign up for an API key
  2. Choose your preferred programming language
  3. Copy and paste the example code
  4. Run the code to see the API in action!

Here's an example API call you can use to get started:

curl -X POST https://api.blitz.build/predict/ \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY_HERE" \
-d '{"messages":[{"id":"msg1","text":"I love this service!"}]}'
import requests
import json

url = "https://api.blitz.build/predict/"
headers = {
    "Content-Type": "application/json",
    "X-API-Key": "YOUR_API_KEY_HERE"
}
data = {
    "messages": [
        {"id": "msg1", "text": "I love this service!"}
    ]
}

response = requests.post(url, headers=headers, data=json.dumps(data))
print(response.json())
fetch('https://api.blitz.build/predict/', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        'X-API-Key': 'YOUR_API_KEY_HERE'
    },
    body: JSON.stringify({
        messages: [
            {id: 'msg1', text: 'I love this service!'}
        ]
    })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Copied!

Pricing

$0.30
per million tokens
Get Started Now