Getting Started

You can use the JavaScript client library to interact with Hexia APIs, such as Address, and Search, from your web applications.
Follow the instructions on this page to get started

How to make API requests

To use the hexia API you need 3 steps to start
  1. Get your {API_KEY} from https://microservices.hexia.io/api-keys
  2. Include the hexia.js Javascript SDK
  3. Call the desired service
    //1. include the sdk
    <script src="https://sdk.hexia.io/js/hexia.js?api_key={API_KEY}"></script>

    <script>
        //2. call a service
        hexia.address.find('3752AP', 3).then(function(response) {
            console.log(response.data);
        });
    </script>