Account Details
curl --request GET \
--url https://api.minaexplorer.com/accounts/{public_key}import requests
url = "https://api.minaexplorer.com/accounts/{public_key}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.minaexplorer.com/accounts/{public_key}', 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/accounts/{public_key}",
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/accounts/{public_key}"
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/accounts/{public_key}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.minaexplorer.com/accounts/{public_key}")
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{
"account": {
"publicKey": "string",
"balance": {
"total": "string",
"unknown": "string",
"lockedBalance": null
},
"nonce": 0,
"receiptChainHash": "string",
"delegate": "string",
"votingFor": "string",
"totalTx": 0,
"totalBlocks": 0,
"totalSnarks": 0,
"countPendingTransactions": 0,
"firstPendingTransaction": [
{}
],
"username": "string",
"epochStakingAccount": [
{
"pk": "string",
"balance": "string",
"delegate": "string",
"token": 0,
"receipt_chain_hash": "string",
"voting_for": "string",
"nonce": 0,
"epoch": 0,
"chainId": "string",
"public_key": "string"
}
],
"nextEpochStakingAccount": [
{}
],
"epochDelegators": [
{
"pk": "string",
"balance": "string",
"delegate": "string",
"token": 0,
"receipt_chain_hash": "string",
"voting_for": "string",
"nonce": 0,
"epoch": 0,
"chainId": "string",
"public_key": "string"
}
],
"nextEpochDelegators": [
{}
],
"epochTotalStakingBalance": "string",
"nextEpochTotalStakingBalance": "string"
}
}{
"message": "No account found for that public key."
}accounts
Account Details
Get the details of a Mina account
GET
/
accounts
/
{public_key}
Account Details
curl --request GET \
--url https://api.minaexplorer.com/accounts/{public_key}import requests
url = "https://api.minaexplorer.com/accounts/{public_key}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.minaexplorer.com/accounts/{public_key}', 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/accounts/{public_key}",
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/accounts/{public_key}"
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/accounts/{public_key}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.minaexplorer.com/accounts/{public_key}")
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{
"account": {
"publicKey": "string",
"balance": {
"total": "string",
"unknown": "string",
"lockedBalance": null
},
"nonce": 0,
"receiptChainHash": "string",
"delegate": "string",
"votingFor": "string",
"totalTx": 0,
"totalBlocks": 0,
"totalSnarks": 0,
"countPendingTransactions": 0,
"firstPendingTransaction": [
{}
],
"username": "string",
"epochStakingAccount": [
{
"pk": "string",
"balance": "string",
"delegate": "string",
"token": 0,
"receipt_chain_hash": "string",
"voting_for": "string",
"nonce": 0,
"epoch": 0,
"chainId": "string",
"public_key": "string"
}
],
"nextEpochStakingAccount": [
{}
],
"epochDelegators": [
{
"pk": "string",
"balance": "string",
"delegate": "string",
"token": 0,
"receipt_chain_hash": "string",
"voting_for": "string",
"nonce": 0,
"epoch": 0,
"chainId": "string",
"public_key": "string"
}
],
"nextEpochDelegators": [
{}
],
"epochTotalStakingBalance": "string",
"nextEpochTotalStakingBalance": "string"
}
}{
"message": "No account found for that public key."
}⌘I