Target:
Python
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())