Get Payment vendors
This endpoint can be used to fetch the list of supported vendor bank account details where the user will send the funds to when iinitiating a Buy request.
Get all vendors
Use this endpoint to get all Payment Vendors
GET api.linkio.world/transactions/v1/vendors
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/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/vendors"
headers = {
"accept": "application/json",
"ngnc-sec-key": "Bridge_Secret_Key",
"content-type": "application/json"
}
response = requests.post(url, headers=headers)
print(response.text)
API Reference
You can view the API reference for working with Vendors
Updated about 2 months ago