Skip to main content
POST
/
identify
/
text
cURL
curl --request POST \
  --url https://api.vambo.ai/v1/identify/text \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>"
}
'
{
  "primary": {
    "name": "<string>",
    "script": "<string>",
    "code": "<string>"
  },
  "additional": [
    {
      "name": "<string>",
      "script": "<string>",
      "code": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
text
string
required

The text to identify

Response

Identify text response

primary
object
required
additional
object[]