Skip to main content
const options = {
  method: 'GET',
  headers: {
    accept: 'application/json',
    'content-type': 'application/json',
    'ngnc-sec-key': 'Bridge_Secret_Key',
  },
  
};

fetch('https://api.linkio.world/rates/v1/on-ramp/rates', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

FX rates Off-ramp Rates