Skip to main content

Use this Endpoint to get all Transaction

Get api.linkio.world/transactions/v1/fetch_all_transactions?business_id=${bus_id}
  • Deposit: These are simply transactions received in to any address you generated
  • Withrawal: These are transactions signed and sent out via Off-ramp.

Get all Business transactions.

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

let bus_id = "string"
fetch(`https://api.linkio.world/transactions/v1/fetch_all_transactions`, options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

Get Payment Wallets Get Transaction