v3

latestOpenAPI 3.0.0raw.githubusercontent.com2026-03-0936575.8 KB
Predict

Predict the language of a text

Predict the language of a text using a neural model. A POST version of this endpoint is also available, it accepts a JSON body with exactly the same parameters.

Use the POST version if you want to predict the language of a long text, as the GET version has a limit on the length of the text that can be provided.

get/predict/lang

Query parameters

textstring required
Example:hello world

The text to predict language of

kinteger

the number of predictions to return

thresholdnumber

the minimum probability for a language to be returned

Response

the predicted languages

Example response

{
  "predictions": [
    {
      "lang": "en",
      "confidence": 0.9
    }
  ]
}