Tisane API

Text Analysis / OAuth Advanced HTTPS CORS
Varies by plan (check documentation)

Overview

Tisane is a text analytics API specialized in detecting abusive content, hate speech, and cybercrime in user-generated text. It can identify personal attacks, profanity, sexual content, and other harmful language across 30+ languages. It is designed for content moderation platforms and law enforcement applications.

💡

Beginner Tip

Tisane returns an "abuse" array with type labels like "personal_attack" or "hate_speech" — check this array first in your response handler. Use the "settings" object in your request to tune sensitivity thresholds for your specific moderation use case.

Available Data

Tisane data via REST API
JSON-formatted response data
Requires OAuth authentication

Example Response

JSON Response
{
  "route": "Line 1",
  "origin": "Station A",
  "destination": "Station B",
  "departure": "08:30",
  "arrival": "09:15",
  "status": "On Time",
  "delays_min": 0
}

Field Reference

abuse List of detected abusive content segments with type, severity, and text offset
abuse[].type Category of abuse detected, e.g., "personal_attack", "hate_speech", "profanity", "sexual_advances"
abuse[].severity Severity level of the detected abuse: "low", "medium", or "high"
entities_detected Named entities such as people, places, and organizations found in the text
sentiment Overall sentiment of the analyzed text: "positive", "negative", or "neutral"

Implementation Example

const url = "https://tisane.ai/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "Authorization": "Bearer YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

401 Unauthorized Missing or invalid API key in the Authorization header
Include your API key as a Bearer token: "Authorization: Bearer YOUR_API_KEY" in every request
Unsupported language error Using a language code that Tisane does not support for abuse detection
Check Tisane documentation for the list of supported languages and use the correct BCP 47 language tag
Empty abuse array despite offensive content Default sensitivity settings may filter out mild content
Adjust the "settings" object in your request to lower detection thresholds for your specific moderation needs

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 5/20
🔒 Security 15/15
🛠 Developer XP 8/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth OAuth
HTTPS REQUIRED
CORS YES
Category Text Analysis
Difficulty Advanced
Verified: 2026-04-04

Similar APIs

View All →