Operating highly available and secure staking infrastructure is complex. Staked makes it easy to offer staking to your customers
Get in Touch
import axios from "axios";
const api_key = 'YOUR API KEY';
var api = axios.create({
baseURL: "https://mainnet.staked.cloud/api",
timeout: 1000000
});
api.defaults.headers.post["Content-Type"] = "application/json";
api.get(`/yields?api_key=${api_key}&extended=true&by_key=false`)
.then(response => {
console.log(res);
})