1 support issue
For additional help, check out the developer's support site.
Filter by
All
- All
- Questions
- Suggestions
- Problems
andres miranda
Mar 30, 2026
Java -jar c:\Dev\services\syncservice:jar --ip 192.168.1195 -- port. 55555
// WARNING: For GET requests, body is set to null by browsers.
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function() {
if(this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("GET", "https://api.nowpayments.io/v1/min-amount?currency_from=eth¤cy_to=trx&fiat_equivalent=usd");
xhr.setRequestHeader("x-api-key", "<your_api_key>");
xhr.send();
- Report illegal content
- Copy link

