On-ramp Rates
Use this endpoint to fetch our onramp rates
const options = {
method: 'GET',
headers: {
accept: 'application/json',
'content-type': 'application/json',
'ngnc-sec-key': 'Bridge_Secret_Key',
},
};
fetch('https://api.ngnc.online/rates/v1/ngnc-usdc', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import requests
url = "https://api.ngnc.online/rates/v1/ngnc-usdc"
headers = {
"accept": "application/json",
"content-type": "application/json",
"ngnc-sec-key": "Bridge_Secret_Key"
}
response = requests.get(url, json=payload, headers=headers)
print(response.text)
Updated 4 months ago