Saltar al contenido principal

Retrieve Current Dual Staking Grade

GET 

https://staking-api.coredao.org//staking/summary/dualstaking_grade

Returns the current dual staking grade, including stake rates and associated percentages.

Request

Responses

Dual staking grade retrieved successfully.

Schema
    statusinteger

    Status code indicating the result of the operation.

    messagestring

    Additional information or message about the response.

    result object[]

    List of dual staking grades with stake rates and percentages.

  • Array [
  • stakeRateinteger

    The stake rate for the dual staking grade.

    percentageinteger

    The percentage associated with the stake rate.

  • ]
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://staking-api.coredao.org/staking/summary/dualstaking_grade");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://staking-api.coredao.org
ResponseClear

Click the Send API Request button above and see the response here!