Others
HTTP Status Code ExplanationAPI Online Call
Request Address
https://api.briskapi.com/v1/translate
Request Method
POST
Request Authentication
Content-Type: application/json
Authorization: Bearer {API key}
Request Parameters
-
content
string
required
The text that you want to translate.
-
from
string
optional
The source language of the text.
For Supported Languages, See: https://www.briskapi.com/languagesupport
-
to
string
optional
The target language for translation.
Request Example CURL
curl https://api.briskapi.com/v1/translate \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {API key}" \
-d '{
"content":"Hello",
"from":"en",
"to":"ja"
}'
Response Example
{
"Content": "こんにちは"
}