Skip to main content
GET
/
summary
Blockchain Summary
curl --request GET \
  --url https://api.minaexplorer.com/summary
import requests

url = "https://api.minaexplorer.com/summary"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.minaexplorer.com/summary', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.minaexplorer.com/summary",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.minaexplorer.com/summary"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.minaexplorer.com/summary")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.minaexplorer.com/summary")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "blockchainLength": 23624,
  "chainId": "5f704cc0c82e0ed70e873f0893d7e06f148524e3f0bdae2afb02e7819a0c24d1",
  "circulatingSupply": "107475777.840039250",
  "dateTime": "Tue, 25 May 2021 00:27:00 GMT",
  "epoch": 4,
  "globalSlot": 33129,
  "lockedSupply": "716354155.000000000",
  "minWindowDensity": 39,
  "nextEpochLedgerHash": "jxVF5YbC3B5Rk6ibfsL97WaqojfxrgWtEqMJST9pb4X8s3kRD2T",
  "previousStateHash": "3NKYTJhv86Ho2gnK9MQb2yXCHcJf9xB2YJgR8ibCTjYiKKz2vWtX",
  "slot": 4569,
  "snarkedLedgerHash": "jwifqGrNYctdXdmuuZfViuSjLjtr25i5dh4myZR5uGXyKoEVQrh",
  "stagedLedgerHash": "jxHDPBYakzx1giatQcgHrWk9yGp7tMcYoaLnTPSPW955N9vDfSb",
  "stakingEpochLedgerHash": "jwPwVsSPZ2tmmGbp8UrWGmDgFDrrzTPpYcjpWosckmcVZV2kcW7",
  "stateHash": "3NL3SZxz1y2YotE22vx5NndCFdwu6kK1YRBoSt95AJQdLPtNnYxd",
  "totalCurrency": "823829932.840039233"
}

Response

200 - application/json

OK

blockchainLength
number
required
chainId
string
required
Minimum string length: 1
circulatingSupply
string
required
Minimum string length: 1
dateTime
string
required
Minimum string length: 1
epoch
number
required
globalSlot
number
required
lockedSupply
string
required
Minimum string length: 1
minWindowDensity
number
required
nextEpochLedgerHash
string
required
Minimum string length: 1
previousStateHash
string
required
Minimum string length: 1
slot
number
required
snarkedLedgerHash
string
required
Minimum string length: 1
stagedLedgerHash
string
required
Minimum string length: 1
stakingEpochLedgerHash
string
required
Minimum string length: 1
stateHash
string
required
Minimum string length: 1
totalCurrency
string
required
Minimum string length: 1