POST
/
translate
curl --request POST \
  --url https://api.qtzl.ai/translate \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "content": "<string>",
  "target": "<string>",
  "format": "text"
}'
{
  "result": "ok",
  "message": "Translated successfully",
  "translation": "<string>"
}

Authorizations

api-key
string
header
required

API key authentication. You can obtain your API key by registering on your project dashboard.

Body

application/json

Response

201
application/json

Content successfully translated

The response is of type object.