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
content
string
required

The content to be translated

target
string
required

The target language code for translation (e.g., 'es', 'fr', 'de')

format
enum<string>
default:text

The format of the content to be translated

Available options:
text,
html

Response

201
application/json
Content successfully translated
result
string
Example:

"ok"

message
string
Example:

"Translated successfully"

translation
string

The translated content