TextGears · Example Payload

Detect Language

GrammarSpellingText AnalysisReadabilityNatural Language ProcessingNLPText SummarizationLanguage Detection

Detect Language is an example object payload from TextGears, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.textgears.com/detect",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "text": "The quick brown fox jumps over the lazy dog.",
      "key": "YOUR_API_KEY"
    }
  },
  "response": {
    "status": true,
    "response": {
      "language": "en-US",
      "multiLanguages": [
        {
          "language": "en-US",
          "score": 0.92
        },
        {
          "language": "en-GB",
          "score": 0.07
        },
        {
          "language": "en-AU",
          "score": 0.01
        }
      ]
    }
  }
}