Forgot password?
Unexpected error occurred

API Key

Every function call requies an API key to be sent along with the request. Different versions of the service have different requirements.

Parameters:

APIKEY - Your API key
REQUEST- Function specific request data

Examples:

Request:
http://api.geosvc.com/rest/{REQUEST}?apikey={APIKEY}
Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:geos="http://geoservice/">
    <soapenv:Header>
        <geos:ApiKey>{APIKEY}</geos:ApiKey>
    </soapenv:Header>
    <soapenv:Body>
        {REQUEST}
    </soapenv:Body>
</soapenv:Envelope>
Request:
<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:ser="http://skats.net/services/">
   <soapenv:Header>
      <AuthenticationHeader xsi:type="ser:AuthenticationHeader">
         <SessionID xsi:type="xsd:string">{APIKEY}</SessionID>
      </AuthenticationHeader>
   </soapenv:Header>
   <soapenv:Body>
      {REQUEST}
   </soapenv:Body>
</soapenv:Envelope>