OTC Sell Rates
Use this endpoint to fetch our usdc - OTC rates
const options = {
method: "GET",
headers: {
accept: "application/json",
"ngnc-sec-key": "Bridge_Secret_Key",
"content-type": "application/json"
},
};
fetch("https://lobster-app-whutt.ondigitalocean.app/otc/sell", options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import requests
url = "https://lobster-app-whutt.ondigitalocean.app/otc/sell"
headers = {
"accept": "application/json",
"ngnc-sec-key": "Bridge_Secret_Key",
"content-type": "application/json"
}
response = requests.get(url, json=payload, headers=headers)
print(response.text)
Updated 7 months ago