DataSqueezer Ltd. specializes in utilizing artificial intelligence for generating text and image content. We offer products such as a translator, background remover, and upscaler, which utilize state-of-the-art artificial intelligence technologies and are designed to be as efficient and accurate as possible.
Our products will help you quickly and efficiently generate custom original texts, and they can translate them into three dozen foreign languages. It will edit your images to not only look great but also save space on your storage, speed up your website, and improve its SEO score.
We are an innovative company that constantly strives to develop and expand the services offered.
curl -H "Content-Type: application/json" https://datasqueezer.com/nexus/createTask -d '{ "token": "__API_TOKEN__", "service": "translatepro", "data": "__TEXT_TO_TRANSLATE__", "serviceParams": { "fromLang": "__SOURCE_LANG__", "toLang": "__INTO_LANG__" } }'
import requests
import json
endpoint = 'https://datasqueezer.com/nexus/createTask'
data = {
'token': '__API_TOKEN__',
'service': 'translatepro',
'data': '__TEXT_TO_TRANSLATE__',
'serviceParams':
{
'fromLang': '__SOURCE_LANG__',
'toLang': '__INTO_LANG__',
},
}
response = requests.post(endpoint, data=json.dumps(data))
$curlHandle=curl_init("https://datasqueezer.com/nexus/createTask");
$data=[
'token'=>'__TOKEN__',
'service'=>'translatepro',
'data'=>'__TEXT_TO_TRANSLATE__',
'serviceParams'=>[
'fromLang'=>'__SOURCE_LANGUAGE__',
'toLang'=>'__INTO_LANGUAGE__',
],
];
curl_setopt($curlHandle, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandle, CURLOPT_FOLLOWLOCATION, true);
$response=curl_exec($curlHandle);
$error_msg=curl_error($curlHandle);
curl_close($curlHandle);