Account Delegation

Get information about staking account delegations, 'Activate', and 'Deactivate' with the staked amount, vote account, and stake authority.

__Data goes back 30 days__

Examples

Get delegation info on a stake account

const axios = require("axios");

const url = "https://rest-api.hellomoon.io/v0/staking/actions";

async function getDelegationInfo() {
    const { data } = await axios.post(
        url,
        {
			"stakeAccount": "98CwUi4SqDuSJoXRStFdk7wontYi7jmDghCRHSbTpj6u"
		},
        {
            headers: {
                Accept: "application/json",
                "Content-Type": "application/json",
                Authorization: "Bearer <your_token>",
            },
        }
    );

    console.log(data);
}
Language
Authorization
Bearer
JWT
Click Try It! to start a request and see the response here!