Tisane API Documentation
tisane · Company
Tisane is a natural language processing library, providing: * standard NLP functionality * special functions for detection of problematic or abusive content * low-level NLP like morphological analysis and tokenization of no-space languages (Chinese, Japanese, Thai) Tisane has monolithic architecture. All the functions are exposed using the same language models and the same analysis process invoked using the [POST /parse](#561264c5-6dbe-4bde-aba3-7defe837989f) method. Other methods i
Authentication
Sample Requests
Lists all hypernyms related to a family. A hypernym is a parent concent. E.g. "vehicle" is a hypernym of "truck".
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hypernyms?family=%7Bfamily_id%7D&maxLevel=%7Bmax_number_of_levels%7D"
import requests
params = {
"family": "{family_id}",
"maxLevel": "{max_number_of_levels}"
}
response = requests.get(
"https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hypernyms",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hypernyms');
url.searchParams.set('family', '{family_id}');
url.searchParams.set('maxLevel', '{max_number_of_levels}');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hypernyms")
q := baseURL.Query()
q.Set("family", "{family_id}")
q.Set("maxLevel", "{max_number_of_levels}")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hypernyms")
uri.query = URI.encode_www_form({
"family" => "{family_id}",
"maxLevel" => "{max_number_of_levels}"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hypernyms?" . http_build_query([
"family" => "{family_id}",
"maxLevel" => "{max_number_of_levels}"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Lists all hyponyms related to a family. A hyponym is a child concent. E.g. "truck" is a hypernym of "vehicle".
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hyponyms?family=%7Bfamily_id%7D&maxLevel=%7Bmax_number_of_levels%7D"
import requests
params = {
"family": "{family_id}",
"maxLevel": "{max_number_of_levels}"
}
response = requests.get(
"https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hyponyms",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hyponyms');
url.searchParams.set('family', '{family_id}');
url.searchParams.set('maxLevel', '{max_number_of_levels}');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hyponyms")
q := baseURL.Query()
q.Set("family", "{family_id}")
q.Set("maxLevel", "{max_number_of_levels}")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hyponyms")
uri.query = URI.encode_www_form({
"family" => "{family_id}",
"maxLevel" => "{max_number_of_levels}"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/tisane.ai/1.0.0/hyponyms?" . http_build_query([
"family" => "{family_id}",
"maxLevel" => "{max_number_of_levels}"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));List inflected forms
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/tisane.ai/1.0.0/inflections?family=%7Bfamily_id%7D&lexeme=%7Blexeme_id%7D&language=%7Blanguage_code%7D"
import requests
params = {
"family": "{family_id}",
"lexeme": "{lexeme_id}",
"language": "{language_code}"
}
response = requests.get(
"https://api.apis.guru/v2/specs/tisane.ai/1.0.0/inflections",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/tisane.ai/1.0.0/inflections');
url.searchParams.set('family', '{family_id}');
url.searchParams.set('lexeme', '{lexeme_id}');
url.searchParams.set('language', '{language_code}');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/tisane.ai/1.0.0/inflections")
q := baseURL.Query()
q.Set("family", "{family_id}")
q.Set("lexeme", "{lexeme_id}")
q.Set("language", "{language_code}")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/tisane.ai/1.0.0/inflections")
uri.query = URI.encode_www_form({
"family" => "{family_id}",
"lexeme" => "{lexeme_id}",
"language" => "{language_code}"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/tisane.ai/1.0.0/inflections?" . http_build_query([
"family" => "{family_id}",
"lexeme" => "{lexeme_id}",
"language" => "{language_code}"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Tisane API Documentation?
Tisane API Documentation is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Tisane API Documentation is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?