Get all vendors
Use this endpoint to get all Payment Vendors
GET api.linkio.world/transactions/v1/payment_vendorsRequest
API Reference
You can view the API reference for working with VendorsBusiness Offramp Get Payment Banks
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
This endpoint can be used to fetch the list of supported vendor bank account details where the user will send the funds to when initiating a Onramp request.
const options = {
method: 'GET',
headers: {
accept: 'application/json',
'ngnc-sec-key': 'Bridge_Secret_Key',
'content-type': 'application/json'
},
};
fetch('https://api.linkio.world/transactions/v1/payment_vendors', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import requests
url = "https://api.linkio.world/transactions/v1/payment_vendors"
headers = {
"accept": "application/json",
"ngnc-sec-key": "Bridge_Secret_Key",
"content-type": "application/json"
}
response = requests.post(url, headers=headers)
print(response.text)
