Skip to content

Overview (4.8.0.0)

This reference describes RESTful web methods for interacting with Tisane API using standard HTTP and JSON-based communication.

Download OpenAPI description
Languages
Servers
Tisane public cloud
https://api.tisane.ai

These are the methods that actually perform analysis and transformation of input text.

Operations

Methods to retrieve and inspect entries from the language models.

Operations

Request

Retrieves inflected forms of a specified lexeme within a given language family.

Security
Tisane-API-Key
Query
languagestringrequired

The code of a language in Tisane. Example: en.

Example: language=en
lexemestringrequired

The ID of a lexeme to inspect.

Example: lexeme=3130180
familystringrequired

The ID of a family to inspect.

Example: family=58443
curl -i -X GET \
  'https://api.tisane.ai/lm/inflections?language=en&lexeme=3130180&family=58443' \
  -H 'Ocp-Apim-Subscription-Key: YOUR_API_KEY_HERE'

Responses

Successful response

Bodyapplication/jsonArray [
textstring
isLemmaboolean
featuresArray of objects
]
Response
application/json
[ { "text": "bought", "features": [] }, { "text": "bought", "features": [] }, { "text": "buy", "isLemma": true, "features": [] }, { "text": "buys", "features": [] }, { "text": "buying", "features": [] }, { "text": "buy", "features": [] }, { "text": "buy", "features": [] }, { "text": "buy", "features": [] } ]