Login
Headers
Params
Body
LuckData API-Key
Please Input
LuckData API-Host
Please Input
This test defaults to consuming 1 credit
interface description
Tranlate Text
Code Snippets
Example Responses
Results
Target:
Python
Client:
requests
import requests

headers = {
    'X-Luckdata-Api-Key': ''
}

json_data={
    "to": "ja",
    "from": "auto",
    "text": "hello world"
}

response = requests.post(
    '/api/google-translate-api/kzwlybc08w9j',
    headers=headers,
    json=json_data,
)
print(response.json())