top of page
API Documentation
API keys are displayed on your "Account Settings" page.
API endpoint
PHP example
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.datasheetcrawler.com/api/?part=<mpn>&apikey=<key>");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
$response = json_decode(curl_exec($ch), true);
curl_close($ch);
Custom managed solutions
Full data downloads available for large integrations.
bottom of page