Saltar al contenido principal

Retrieve Latest Staking Round

GET 

https://staking-api.coredao.org//staking/status/round

Returns the current round of the core chain

Request

Responses

Latest round information retrieved successfully.

Schema
    statusinteger

    Status code of the response.

    messagestring

    Additional information or message about the response.

    result object
    latestRoundinteger

    The number of the latest staking round.

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://staking-api.coredao.org/staking/status/round");
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!