We offer a silver live price API. This guide will provide you step by step instructions to get live silver rates using javascript. Methodologies include using Fetch
, jQuery
, or XHR
.
REPLACE_ME
with your API key.base
value to a currency or remove this query param.currencies
value to a list of values or remove this query param. (XAG)For 2 and 3, you can find this documented at Offical Documentation
var settings = {
"url": "https://api.metalpriceapi.com/v1/latest?api_key=REPLACE_ME&base=USD¤cies=XAU,XAG,EUR",
"method": "GET",
"timeout": 0,
};
$.ajax(settings).done(function (response) {
console.log(response);
});
var requestOptions = {
method: 'GET',
redirect: 'follow'
};
fetch("https://api.metalpriceapi.com/v1/latest?api_key=REPLACE_ME&base=USD¤cies=XAU", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function() {
if(this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("GET", "https://api.metalpriceapi.com/v1/latest?api_key=REPLACE_ME&base=USD¤cies=XAG");
xhr.send();