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

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

Request
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

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

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

Similar APIs

View All →