The URL of the web service is: https://api.schukat.com/schukat/schukat_ws.nsf/schukat-ws?OpenWebService
The HTTP POST request of the SOAP request/message contains the authorization request header with user name and password, while the actual user data of the request must be contained in the body of the so-called Envelope element. Listed below are the necessary components of the body element of a SOAP message:
Parameter | Value | Description |
APIKEY |  | The API key from your registration. |
REQUEST | MPN;Quantity;Exact Match;Manufacturer|MPN;Quantity;
Exact Match;Manufacturer|... | Search key (MPN/SKU) with optional details such as quantity and manufacturer. Per requests, a maximum of 25 search keys, separated by the vertical bar ''|'', can be transmitted. |
OUTPUTFORMAT | XML/JSON | Output format for the search result. |
LANGUAGE | DE/EN | Language (datasheet, article description) |
Example of a SOAP request with multiple SKUs/MPNs:
<soapenv:Envelope xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="
http://www.w3.org/2001/XMLSchema" xmlns:soapenv="
http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:DefaultNamespace">
<soapenv:Header/>
<soapenv:Body>
<urn:SEARCH soapenv:encodingStyle="
http://schemas.xmlsoap.org/soap/encoding/">
<APIKEY xsi:type="xsd:string">123456789</APIKEY>
<REQUEST xsi:type="xsd:string">LCM-40KN-AUX|MAX3443ECSA+|RS-35|MPX2010DP|LTS546AP|RS-25-12|1N4148|HLG-600H-24|HLG-600h-24AB</REQUEST>
<OUTPUTFORMAT xsi:type="xsd:string">XML</OUTPUTFORMAT>
<LANGUAGE xsi:type="xsd:string">DE</LANGUAGE>
</urn:SEARCH>
</soapenv:Body>
</soapenv:Envelope>