GPSR info

You can easily obtain the required information about product manufacturers according to the new direRead more
Choose a discounted package
Quantity discounts
2 000 Credits / výrobce 
Description GPSR info

You can easily obtain the required information about product manufacturers according to the new directive "General Product Safety Regulation". Based on the manufacturer's name, we will provide you with company information, the complete address of the representation, and an email contact. All data is provided based on publicly discovered information that cannot otherwise be verified, and the provider is not responsible for any inaccuracies.

Find more information about the new directive here EUCommission

For developers
We have prepared some simple examples of connecting to the DataSqueezer API in common programming languages.
cURL
Python
PHP

curl -H "Content-Type: application/json" https://datasqueezer.com/nexus/createTask -d '{ "token": "__API_TOKEN__", "service": "gpsr", "data": ["__MANUFACTURER__", "__MANUFACTURER2__"] }'

 

TITLE DESCRIPTION REQUIRED PARAMETER
__MANUFACTURER__

Manufacturer's name

yes
__MANUFACTURER2__

Another manufacturer name
(this way you can send multiple manufacturers)

ne

 

 

import requests
import json

endpoint = 'https://datasqueezer.com/nexus/createTask'

data = {
'token': '__API_TOKEN__',
'service': 'gpsr',
'data': ['__MANUFACTURER__', '__MANUFACTURER2__'],
}

response = requests.post(endpoint, data=json.dumps(data))

 

TITLE DESCRIPTION REQUIRED PARAMETER
__MANUFACTURER__

Manufacturer's name

yes
__MANUFACTURER2__

Another manufacturer name
(this way you can send multiple manufacturers)

ne

 

$curlHandle=curl_init("https://datasqueezer.com/nexus/createTask");

$data=[
'token'=>'__API_TOKEN__',
'service'=>'gpsr',
'data'=>['__MANUFACTURER__', '__MANUFACTURER2__'],
];

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);

 

TITLE DESCRIPTION REQUIRED PARAMETER
__MANUFACTURER__

Manufacturer's name

yes
__MANUFACTURER2__

Another manufacturer name
(this way you can send multiple manufacturers)

ne

 

chat
Or write to us at
Login
Don't have an account yet?Sign up.
Tracking product
Please fill in all conditions which has to be reached and an email address where you want to get a notification
Credits
The use of DataSqueezer services is tied to a user account, which needs to be set up in advance. Do you wish to create a registration or sign in?
Sign Up