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/

NLU / NLP Methods

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

Operations

Language Model Direct Access

Methods to retrieve and inspect entries from the language models.

Operations

List inflected forms

Request

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

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?family=58443&language=en&lexeme=3130180' \
  -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": [] } ]