API Centre

Jarilo Design

To use our API's, contact our sales team at sales@jarilo.co.uk to get your IP white listed, and to acquire an API key.
 

We have a range of API's available, including inventory management, ecommerce, geoip, currency conversion and website status checking.

How To Use

Here is an example on how to communcate with out GeoIP API using a simple fetch request in JavaScript:

const result = await fetch('https://api.jarilo.co.uk/jarilo/geoip/v1/', {
   method: 'get',
   headers: {
      "Accept": "application/json",
      "auth": "your_api_key_goes_here"
   }
});

const result = await result.json();
console.log(result);