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
//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>