POST
/
models
/
v2
/
Areeb123
/
En-Fr_Translation_Model
curl --request POST \
  --url https://api.bytez.com/models/v2/Areeb123/En-Fr_Translation_Model \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "Hello"
}'
{
  "output": "Bonjour"
}

Authorizations

Authorization
string
header
required

Provide your API key as Key your-key-here in the Authorization header.

Body

application/json
text
string
required

Input text to translate.

Example:

"Hello"

Response

200 - application/json
Successful response with the translated text.
output
string

Translated text.