Introduction
Maple Nodes provides custom-built endpoints that can be consumed in any environment through HTTPS requests.
Celestia
Call | Description |
---|---|
peers | View a list of active peers on Celestia's mainnet. |
peersDetailed | View a list of detailed peer information that are active on Celestia's mainnet. |
validators | View the current list of active & inactive validators on Celestia's mainnet. |
tn-peers | View a list of active peers on Celestia's testnet mocha-4. |
tn-peersDetailed | View a list of detailed peer information that are active on Celestia's testnet mocha-4. |
tn-validators | View the current list of active & inactive validators on Celestia's testnet mocha-4. |
Peers
View a list of active peers on Celestia's mainnet.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/celestia/mainnet/peers/
/celestia/mainnet/peers/
This call does not take parameters.
Response
Sample 200 Response
[
{
"moniker": "colossus-sentry2",
"chain_id": "celestia",
"ip_address": "95.216.246.249",
"peer_discovered": "2024-07-19 19:57:53"
},
{
"moniker": "StakeTown-SNAP",
"chain_id": "celestia",
"ip_address": "95.216.46.125",
"peer_discovered": "2024-07-19 19:57:53"
},
{
"moniker": "7b4a67a1-dcc8-5573-8492-57ecbaba2f8e",
"chain_id": "celestia",
"ip_address": "95.216.71.19",
"peer_discovered": "2024-07-19 19:57:53"
},
{
"moniker": "mainnet-backup-2",
"chain_id": "celestia",
"ip_address": "95.216.74.45",
"peer_discovered": "2024-07-19 19:57:53"
},
{
"moniker": "celestia_antep",
"chain_id": "celestia",
"ip_address": "95.217.192.173",
"peer_discovered": "2024-07-19 19:57:53"
},
{
"moniker": "qubelabs_relayer",
"chain_id": "celestia",
"ip_address": "95.217.192.250",
"peer_discovered": "2024-07-19 19:57:53"
},
{
"moniker": "colossus-nod21",
"chain_id": "celestia",
"ip_address": "95.217.38.34",
"peer_discovered": "2024-07-19 19:57:53"
},
{
"moniker": "hereWeGo",
"chain_id": "celestia",
"ip_address": "95.217.44.171",
"peer_discovered": "2024-07-19 19:57:53"
},
{
...
}
]
Parameter | Type | Description |
---|---|---|
moniker | string | Nodes moniker name. |
chain_id | string | Chain ID the node is running. |
ip_address | string | IP Address of the node. |
peer_discovered | string | Timestamp of when the node was discovered. |
Peers Detailed
View a list of detailed peer information that are active on Celestia's mainnet.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/celestia/mainnet/peers/detailed/
/celestia/mainnet/peers/detailed/
This call does not take parameters.
Response
Sample 200 Response
[
{
"Moniker": "Validatus",
"ChainId": "celestia",
"PeerDiscovered": "2024-07-19 19:57:53",
"IP": "152.53.45.135",
"Country": "Austria",
"City": "Vienna",
"Region": "Europe",
"Latitude": 48.1951,
"Longitude": 16.3483,
"ISP": "netcup GmbH",
"NodeType": "Validator",
"Tokens": 6013504.29,
"VotingPower": "0.83%",
"ValidatorStatus": "active"
},
{
"Moniker": "NodeStake",
"ChainId": "celestia",
"PeerDiscovered": "2024-07-19 19:57:53",
"IP": "154.26.155.140",
"Country": "Australia",
"City": "Sydney",
"Region": "Oceania",
"Latitude": -33.8681,
"Longitude": 151.1967,
"ISP": "Cogent Communications",
"NodeType": "Validator",
"Tokens": 1246033.72,
"VotingPower": "0.17%",
"ValidatorStatus": "active"
},
{
"Moniker": "liquify-jpn-mainnet",
"ChainId": "celestia",
"PeerDiscovered": "2024-07-19 19:57:53",
"IP": "156.59.230.130",
"Country": "Japan",
"City": "Tokyo",
"Region": "Asia",
"Latitude": 35.6893,
"Longitude": 139.6899,
"ISP": "Zenlayer Inc",
"NodeType": "Other",
"Tokens": null,
"VotingPower": null,
"ValidatorStatus": null
},
{
"Moniker": "Node",
"ChainId": "celestia",
"PeerDiscovered": "2024-07-19 19:57:53",
"IP": "156.67.110.38",
"Country": "India",
"City": "Mumbai",
"Region": "Asia",
"Latitude": 19.0748,
"Longitude": 72.8856,
"ISP": "Contabo Asia Private Limited",
"NodeType": "Other",
"Tokens": null,
"VotingPower": null,
"ValidatorStatus": null
},
{
"Moniker": "LiveRaveN",
"ChainId": "celestia",
"PeerDiscovered": "2024-07-19 19:57:53",
"IP": "157.90.33.62",
"Country": "Germany",
"City": "Affing",
"Region": "Europe",
"Latitude": 48.4641,
"Longitude": 10.9876,
"ISP": "Hetzner Online GmbH",
"NodeType": "Validator",
"Tokens": 1,
"VotingPower": "0.00%",
"ValidatorStatus": "inactive"
},
{
"Moniker": "bp_node",
"ChainId": "celestia",
"PeerDiscovered": "2024-07-19 19:57:53",
"IP": "157.90.92.212",
"Country": "Germany",
"City": "Affing",
"Region": "Europe",
"Latitude": 48.4641,
"Longitude": 10.9876,
"ISP": "Hetzner Online GmbH",
"NodeType": "Other",
"Tokens": null,
"VotingPower": null,
"ValidatorStatus": null
},
{
"Moniker": "celestia-node",
"ChainId": "celestia",
"PeerDiscovered": "2024-07-19 19:57:53",
"IP": "158.220.85.20",
"Country": "United Kingdom",
"City": "Portsmouth",
"Region": "Europe",
"Latitude": 50.8544,
"Longitude": -1.002,
"ISP": "Contabo GmbH",
"NodeType": "Other",
"Tokens": null,
"VotingPower": null,
"ValidatorStatus": null
},
{
...
}
]
Parameter | Type | Description |
---|---|---|
Moniker | string | Nodes moniker name. |
ChainId | string | Chain ID the node is running. |
PeerDiscovered | string | Timestamp of when the node was discovered. |
IP | string | IP Address of the node. |
Country | string | Nodes Country. |
City | string | Nodes City. |
Region | string | Nodes world region location. |
Latitude | int | Nodes latitude coordinate. |
Longitude | int | Nodes longitude coordinate. |
ISP | string | Nodes hosting internet service provider. |
NodeType | string | States whether a node is a 'Validator' or 'Other'. |
Tokens | int | Total TIA self-stake & delegations. |
VotingPower | string | Validator voting power %. |
ValidatorStatus | string | States whether the validator is in the active set or not. |
Validators
View the current list of active & inactive validators on Celestia's mainnet.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/celestia/mainnet/validators/
/celestia/mainnet/validators/
This call does not take parameters.
Response
Sample 200 Response
[
{
"moniker": "Polychain",
"tokens": 37724455.917955,
"voting_power": 5.1999445169494525,
"validator_status": "active"
},
{
"moniker": "bitcoinsuisse.com",
"tokens": 35342768.182323,
"voting_power": 4.871652331399578,
"validator_status": "active"
},
{
"moniker": "Go",
"tokens": 33769660.423714,
"voting_power": 4.654814928052,
"validator_status": "active"
},
{
"moniker": "Finoa Consensus Services",
"tokens": 33177920.71605,
"voting_power": 4.573249440268141,
"validator_status": "active"
},
{
"moniker": "Keplr",
"tokens": 27336279.948847,
"voting_power": 3.768036823193708,
"validator_status": "active"
},
{
"moniker": "Unit 410",
"tokens": 24676322.599189,
"voting_power": 3.4013879133789384,
"validator_status": "active"
},
{
"moniker": "P-OPS Team",
"tokens": 24150164.426851,
"voting_power": 3.328862194008791,
"validator_status": "active"
},
{
"moniker": "Coinbase",
"tokens": 24130980.475673,
"voting_power": 3.326217875374788,
"validator_status": "active"
},
{
"moniker": "Chorus One",
"tokens": 22469072.254597,
"voting_power": 3.0971402033030673,
"validator_status": "active"
},
{
"moniker": "P2P.ORG",
"tokens": 20557747.214441,
"voting_power": 2.833682880438485,
"validator_status": "active"
},
{
"moniker": "Qubelabs",
"tokens": 19393445.041666,
"voting_power": 2.673195298786919,
"validator_status": "active"
},
{
"moniker": "CUCK.",
"tokens": 17714953.599395,
"voting_power": 2.4418317930821347,
"validator_status": "active"
},
{
"moniker": "BinanceNode",
"tokens": 17168072.295726,
"voting_power": 2.3664495942607515,
"validator_status": "active"
},
{
"moniker": "Twinstake",
"tokens": 13431272.823409,
"voting_power": 1.8513686088842038,
"validator_status": "active"
},
{
"moniker": "Little Dipper",
"tokens": 13210381.451175,
"voting_power": 1.8209209098534291,
"validator_status": "active"
},
{
"moniker": "Cosmostation",
"tokens": 13037863.532395,
"voting_power": 1.7971410147162636,
"validator_status": "active"
},
{
"moniker": "Figment",
"tokens": 12449638.865496,
"voting_power": 1.7160600406651558,
"validator_status": "active"
},
{
"moniker": "GalaxyDigital",
"tokens": 12239145.641327,
"voting_power": 1.6870456238832918,
"validator_status": "active"
},
{
"moniker": "Imperator.co",
"tokens": 11615526.169128,
"voting_power": 1.6010858246968789,
"validator_status": "active"
},
{
"moniker": "Anonymous",
"tokens": 10990104.921452,
"voting_power": 1.5148776685153966,
"validator_status": "active"
},
{
"moniker": "Informal Systems",
"tokens": 9917376.704767,
"voting_power": 1.3670126543542986,
"validator_status": "active"
},
{
"moniker": "01node",
"tokens": 9161571.83123,
"voting_power": 1.2628324001292976,
"validator_status": "active"
},
{
"moniker": "Upnode | 0% Fee",
"tokens": 9131635.47649,
"voting_power": 1.2587059686169049,
"validator_status": "active"
},
{
"moniker": "Staking Facilities",
"tokens": 8731875.089391,
"voting_power": 1.203602938436431,
"validator_status": "active"
},
{
"moniker": "Nodes.Guru",
"tokens": 8709921.894771,
"voting_power": 1.2005769068816734,
"validator_status": "active"
},
{
"moniker": "Hex Technologies",
"tokens": 7808201.995519,
"voting_power": 1.0762837041874507,
"validator_status": "active"
},
{
"moniker": "ZKV",
"tokens": 7751891.538374,
"voting_power": 1.068521862545125,
"validator_status": "active"
},
{
"moniker": "polkachu.com",
"tokens": 7315519.654597,
"voting_power": 1.0083722983119898,
"validator_status": "active"
},
{
"moniker": "AI",
"tokens": 7016277.065449,
"voting_power": 0.9671246560911964,
"validator_status": "active"
},
{
"moniker": "Binary Builders",
"tokens": 6885744.499451,
"voting_power": 0.9491320281174266,
"validator_status": "active"
},
{
"moniker": "T DATA",
"tokens": 6610195.960453,
"voting_power": 0.9111503772320623,
"validator_status": "active"
},
{
"moniker": "Baza",
"tokens": 6563402.150722,
"voting_power": 0.9047003116600872,
"validator_status": "active"
},
{
"moniker": "MZONDER",
"tokens": 6124980.233685,
"voting_power": 0.8442681705427927,
"validator_status": "active"
},
{
"moniker": "BlackBlocks",
"tokens": 6086404.820644,
"voting_power": 0.8389509299716401,
"validator_status": "active"
},
{
"moniker": "Validatus",
"tokens": 6013504.285404,
"voting_power": 0.8289023095401523,
"validator_status": "active"
},
{
"moniker": "Cumulo",
"tokens": 5967913.180551,
"voting_power": 0.8226180249843295,
"validator_status": "active"
},
{
"moniker": "XPRV",
"tokens": 5493435.572041,
"voting_power": 0.7572159620850586,
"validator_status": "active"
},
{
"moniker": "project blanc",
"tokens": 5293595.007222,
"voting_power": 0.7296699094248252,
"validator_status": "active"
},
{
"moniker": "Blockdaemon",
"tokens": 5260099.64799,
"voting_power": 0.7250529042131267,
"validator_status": "active"
},
{
"moniker": "senggigi",
"tokens": 5000540.066117,
"voting_power": 0.6892751735145691,
"validator_status": "active"
},
{
"moniker": "Nocturnal Labs",
"tokens": 4736575.998054,
"voting_power": 0.6528903277958911,
"validator_status": "active"
},
{
"moniker": " Lavender.Five Nodes 🐝",
"tokens": 4711310.875637,
"voting_power": 0.6494077796295752,
"validator_status": "active"
},
{
"moniker": "alphab.ai",
"tokens": 4653127.823724,
"voting_power": 0.6413878192507592,
"validator_status": "active"
},
{
"moniker": "Enigma",
"tokens": 4337208.940107,
"voting_power": 0.5978415141632115,
"validator_status": "active"
},
{
"moniker": " kjnodes.com 🦄",
"tokens": 4183728.360302,
"voting_power": 0.5766857286125607,
"validator_status": "active"
},
{
"moniker": "LatamNodes",
"tokens": 4156971.266062,
"voting_power": 0.5729975268321194,
"validator_status": "active"
},
{
"moniker": "Node Guardians",
"tokens": 4051172.507802,
"voting_power": 0.5584142105316633,
"validator_status": "active"
},
{
"moniker": "Easy 2 Stake",
"tokens": 3843908.957676,
"voting_power": 0.5298449724918852,
"validator_status": "active"
},
{
"moniker": "B-Harvest",
"tokens": 3786240.828773,
"voting_power": 0.5218959891760206,
"validator_status": "active"
},
{
"moniker": "Brightlystake",
"tokens": 3739450.697023,
"voting_power": 0.5154464305774843,
"validator_status": "active"
},
{
"moniker": "Everstake",
"tokens": 3733944.090534,
"voting_power": 0.5146873991342807,
"validator_status": "active"
},
{
"moniker": "DSRV",
"tokens": 3668813.059605,
"voting_power": 0.505709728312491,
"validator_status": "active"
},
{
"moniker": "Stakely.io",
"tokens": 3581913.507518,
"voting_power": 0.4937314813529347,
"validator_status": "active"
},
{
"moniker": "Stakin",
"tokens": 3581704.25525,
"voting_power": 0.4937026379897325,
"validator_status": "active"
},
{
"moniker": "FreshSTAKING",
"tokens": 3432115.904184,
"voting_power": 0.4730833578172931,
"validator_status": "active"
},
{
"moniker": "StakeWithUs",
"tokens": 3324069.08964,
"voting_power": 0.4581901691101097,
"validator_status": "active"
},
{
"moniker": "ChainodeTech",
"tokens": 3183480.580768,
"voting_power": 0.43881142850096777,
"validator_status": "active"
},
{
"moniker": "0xFury",
"tokens": 3180496.977963,
"voting_power": 0.43840016825428973,
"validator_status": "active"
},
{
"moniker": "spidey",
"tokens": 3179053.763373,
"voting_power": 0.4382012353442864,
"validator_status": "active"
},
{
"moniker": "Maple Nodes",
"tokens": 3171969.416002,
"voting_power": 0.4372247278673299,
"validator_status": "active"
},
{
"moniker": "Stake🦑Squid",
"tokens": 3137925.136707,
"voting_power": 0.4325320594339258,
"validator_status": "active"
},
{
"moniker": "quantumcore",
"tokens": 3054686.241207,
"voting_power": 0.4210583979133061,
"validator_status": "active"
},
{
"moniker": "Stakecito",
"tokens": 3049147.337332,
"voting_power": 0.42029491459369633,
"validator_status": "active"
},
{
"moniker": "4sv",
"tokens": 3048197.53614,
"voting_power": 0.4201639938585829,
"validator_status": "active"
},
{
"moniker": "[NODERS]",
"tokens": 3038870.93648,
"voting_power": 0.4188784139984181,
"validator_status": "active"
},
{
"moniker": "Astria",
"tokens": 3034906.089723,
"voting_power": 0.41833189894199296,
"validator_status": "active"
},
{
"moniker": "Smart Stake 📈📊",
"tokens": 3034630.502755,
"voting_power": 0.4182939119940483,
"validator_status": "active"
},
{
"moniker": "PRYZM | StakeDrop",
"tokens": 3032194.421249,
"voting_power": 0.4179581221632416,
"validator_status": "active"
},
{
"moniker": "ValiDAO",
"tokens": 3027791.206282,
"voting_power": 0.417351182368685,
"validator_status": "active"
},
{
"moniker": "MyStake",
"tokens": 3014745.242853,
"voting_power": 0.41555292486303697,
"validator_status": "active"
},
{
"moniker": "F5 Nodes",
"tokens": 3009493.07692,
"voting_power": 0.41482896554325754,
"validator_status": "active"
},
{
"moniker": "node101",
"tokens": 3006300.632156,
"voting_power": 0.4143889184904298,
"validator_status": "active"
},
{
"moniker": "StakeTown",
"tokens": 3005637.728748,
"voting_power": 0.4142975437877915,
"validator_status": "active"
},
{
"moniker": "itrocket",
"tokens": 3004384.936101,
"voting_power": 0.41412485866624027,
"validator_status": "active"
},
{
"moniker": "TrustedPoint",
"tokens": 3002701.816297,
"voting_power": 0.4138928571864784,
"validator_status": "active"
},
{
"moniker": "Neoprom",
"tokens": 3001773.948209,
"voting_power": 0.4137649597136257,
"validator_status": "active"
},
{
"moniker": "openbitlab",
"tokens": 3001140.231772,
"voting_power": 0.41367760814733556,
"validator_status": "active"
},
{
"moniker": "CosmoWiz",
"tokens": 3000400.244935,
"voting_power": 0.41357560825357853,
"validator_status": "active"
},
{
"moniker": "Dora Factory PGS",
"tokens": 3000326.287468,
"voting_power": 0.41356541394551877,
"validator_status": "active"
},
{
"moniker": "bitszn",
"tokens": 3000150.042828,
"voting_power": 0.41354112035858404,
"validator_status": "active"
},
{
"moniker": "Staked",
"tokens": 2530685.294807,
"voting_power": 0.3488300308817185,
"validator_status": "active"
},
{
"moniker": "Swiss Staking",
"tokens": 2439674.678765,
"voting_power": 0.336285114265796,
"validator_status": "active"
},
{
"moniker": "NakoTurk",
"tokens": 2160821.115472,
"voting_power": 0.297847898348598,
"validator_status": "active"
},
{
"moniker": "Allnodes",
"tokens": 1901084.914724,
"voting_power": 0.2620458224784986,
"validator_status": "active"
},
{
"moniker": "Decentrio",
"tokens": 1327580.64321,
"voting_power": 0.18299390987856268,
"validator_status": "active"
},
{
"moniker": "Larry Engineer",
"tokens": 1308737.978819,
"voting_power": 0.18039663426515706,
"validator_status": "active"
},
{
"moniker": "Kiln",
"tokens": 1270435.534312,
"voting_power": 0.17511701971662386,
"validator_status": "active"
},
{
"moniker": "Gunter",
"tokens": 1247681.433129,
"voting_power": 0.17198059108417432,
"validator_status": "active"
},
{
"moniker": "NodeStake",
"tokens": 1246033.72377,
"voting_power": 0.17175347058532625,
"validator_status": "active"
},
{
"moniker": "Forbole",
"tokens": 1092185.228332,
"voting_power": 0.15054697149005397,
"validator_status": "active"
},
{
"moniker": "Frens (🤝,🤝)",
"tokens": 948269.8919,
"voting_power": 0.13070966048384447,
"validator_status": "active"
},
{
"moniker": "StakeLab.zone",
"tokens": 827089.922811,
"voting_power": 0.11400619583484103,
"validator_status": "active"
},
{
"moniker": "✅ CryptoCrew Validators",
"tokens": 763259.324139,
"voting_power": 0.10520777678540708,
"validator_status": "active"
},
{
"moniker": "strangelove",
"tokens": 760222.633973,
"voting_power": 0.1047891989691303,
"validator_status": "active"
},
{
"moniker": "Encapsulate (fka KingSuper)",
"tokens": 715619.053013,
"voting_power": 0.09864103485103969,
"validator_status": "active"
},
{
"moniker": "KalpaTech",
"tokens": 702568.035493,
"voting_power": 0.09684208068874957,
"validator_status": "active"
},
{
"moniker": "Colossus",
"tokens": 650146.483133,
"voting_power": 0.08961628625033007,
"validator_status": "active"
},
{
"moniker": "BwareLabs",
"tokens": 548403.02029,
"voting_power": 0.07559195246281211,
"validator_status": "active"
},
{
"moniker": "kooltek68",
"tokens": 469716.028827,
"voting_power": 0.06474572605988786,
"validator_status": "active"
},
{
"moniker": "StakingCabin",
"tokens": 395308.222061,
"voting_power": 0.054489343100977035,
"validator_status": "active"
},
{
"moniker": "ContributionDAO",
"tokens": 373968.13103,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "iqlusion",
"tokens": 349668.884678,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Staking4All",
"tokens": 144340.254892,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Moonlet",
"tokens": 131469.785583,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BitNordic",
"tokens": 125302.106423,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "W3.Hitchhiker",
"tokens": 122209.479095,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "moonli.me",
"tokens": 104901.961246,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Suntzu",
"tokens": 103781.451546,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "AM Solutions 🪐",
"tokens": 100522.226546,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LowFeeValidation",
"tokens": 100364.130898,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Lemniscap",
"tokens": 85245.349745,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Validatrium.com",
"tokens": 81529.590972,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Meria",
"tokens": 65858.110608,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "PartnerStaking | Timeworx.io Airdrop",
"tokens": 54485.645538,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Conqueror",
"tokens": 25682.874793,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Staker Space",
"tokens": 21534.598019,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "KEK",
"tokens": 12230.794823,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "counterpoint",
"tokens": 11543.409268,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Active Nodes",
"tokens": 7344.254939,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": " Blockscope.net",
"tokens": 6756.296929,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "wavefive",
"tokens": 5786.6129,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Crosnest",
"tokens": 3186.404575,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "MH Ventures",
"tokens": 3098.662882,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Neuler",
"tokens": 2666.057894,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Witval",
"tokens": 1250.717478,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Notional",
"tokens": 1010.668541,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Anonstake",
"tokens": 993.344379,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Earthbender",
"tokens": 894.32699,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": " AutoStake 🛡️ Slash Protected",
"tokens": 682.74531,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Please redelegate",
"tokens": 637.187111,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "nysa.network",
"tokens": 553.542544,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "SG-1",
"tokens": 421.8,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "POSTHUMAN∞DVS",
"tokens": 190.32321,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "[Please redelegate]",
"tokens": 123.387819,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "INACTIVE",
"tokens": 105.741186,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "HFA X Defi Dojo Validation",
"tokens": 78.859516,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "vortexray",
"tokens": 50,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Bro_n_Bro",
"tokens": 42.024685,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Stakeflow",
"tokens": 38.282408,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BlockHunters 🎯",
"tokens": 28.197162,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "NodeX Emperor ⚡ Celestia",
"tokens": 25.588895,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "please Redelegate",
"tokens": 24.315473,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ECO Stake 🌱",
"tokens": 19.010117,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Please Redelegate",
"tokens": 18.876893,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "silent",
"tokens": 17.421298,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "GPvalidator",
"tokens": 15.301684,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kraymerica",
"tokens": 15,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Cosmos Spaces",
"tokens": 14.600256,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Huginn",
"tokens": 13.412061,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "jabbey",
"tokens": 13.2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "StakeCapital",
"tokens": 12.013809,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "0base.vc",
"tokens": 11.636129,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Tessellated",
"tokens": 11.600138,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "StakePool",
"tokens": 11.000147,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Architect Nodes",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "NacionCrypto - Parceros",
"tokens": 7.792581,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "cryptech",
"tokens": 6.606408,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "AndromedaPool",
"tokens": 6.600181,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "OmniFlix Network",
"tokens": 6.002168,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Ubik Capital",
"tokens": 6,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ChainTrails | 🛠️",
"tokens": 6,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "openstake.net",
"tokens": 5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Citizen Web3",
"tokens": 4.389,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Brick",
"tokens": 3.913132,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "",
"tokens": 3.779597,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Inno Swap - DELEGATE FOR AIRDROP",
"tokens": 3.633259,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BloClick",
"tokens": 3.616988,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kleomedes",
"tokens": 3.014875,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": " Oni ⛩️",
"tokens": 3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "STAKEME",
"tokens": 3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "cryptonodes",
"tokens": 2.934076,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀",
"tokens": 2.88346,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "DXN",
"tokens": 2.76757,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Wave",
"tokens": 2.707397,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Booga Beras",
"tokens": 2.644586,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Inter Blockchain Services",
"tokens": 2.571357,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "MAHOF",
"tokens": 2.431641,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "EU",
"tokens": 2.009,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "KubikStaking",
"tokens": 1.618264,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Synergy Nodes",
"tokens": 1.550157,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "na",
"tokens": 1.546564,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "0% EU Fast Validator",
"tokens": 1.50017,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "CroutonDigital",
"tokens": 1.280166,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Luganodes",
"tokens": 1.265143,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "AVIAONE 🟢",
"tokens": 1.103307,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Sr20de",
"tokens": 1.1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Stake&Relax 🦥",
"tokens": 1.035645,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "WexclaW",
"tokens": 1.034684,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Equinox",
"tokens": 1.02008,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Pro-Nodes75",
"tokens": 1.017942,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kaizoku Labs",
"tokens": 1.017099,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "NachoNode",
"tokens": 1.015432,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "GPvalidator",
"tokens": 1.015244,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Chocodiva",
"tokens": 1.014038,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "cosmosrescue",
"tokens": 1.010142,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "AviaStake",
"tokens": 1.000366,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "IcyCRO 🧊",
"tokens": 1.000297,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "PowerStaking",
"tokens": 1.000231,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "OKX Earn",
"tokens": 1.000178,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LuckyResearch.org",
"tokens": 1.000144,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "TTT 🇻🇳",
"tokens": 1.000141,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ValidatorVN",
"tokens": 1.000135,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "PathrockNetwork",
"tokens": 1.000124,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Madrona",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Chainflow",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "test",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Avril14th",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LiveRaveN",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "5ElementsNodes",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "DTEAM",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BonyNode💚",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Nodes Hub 🛡️ 100% Slash Protected 🛡️",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "RockX",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Nodiums",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Clorophilla",
"tokens": 0.700388,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Artifact",
"tokens": 0.6,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "vega17",
"tokens": 0.524433,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "InfStones",
"tokens": 0.201176,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "iCosmosDAO",
"tokens": 0.2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Multiplex",
"tokens": 0.101424,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "securesecrets",
"tokens": 0.026495,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "this_is_moniker",
"tokens": 0.01,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ian-test",
"tokens": 0.000145,
"validator_status": "inactive",
"voting_power": 0
}
]
Parameter | Type | Description |
---|---|---|
moniker | string | Validator moniker name. |
tokens | int | Total TIA self-stake & delegations. |
validator_status | string | States whether the validator is in the active set or not. |
voting_power | int | Validator voting power %. |
TN Peers
View a list of active peers on Celestia's testnet mocha-4.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/celestia/testnet/peers/
/celestia/testnet/peers/
This call does not take parameters.
Response
Sample 200 Response
[
{
"moniker": "Conqueror",
"chain_id": "mocha-4",
"ip_address": "103.88.233.178",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "LiveRaveN",
"chain_id": "mocha-4",
"ip_address": "104.219.235.50",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "DerorisValidator",
"chain_id": "mocha-4",
"ip_address": "113.43.234.98",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "kjnodes-testnet-backup",
"chain_id": "mocha-4",
"ip_address": "116.202.231.58",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "DSRV",
"chain_id": "mocha-4",
"ip_address": "125.131.208.71",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "Nodeinfra",
"chain_id": "mocha-4",
"ip_address": "125.253.92.7",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "Staking4All",
"chain_id": "mocha-4",
"ip_address": "129.232.222.18",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "Staked",
"chain_id": "mocha-4",
"ip_address": "13.125.81.52",
"peer_discovered": "2024-10-03 17:01:13"
},
{
"moniker": "hextrust",
"chain_id": "mocha-4",
"ip_address": "13.212.141.100",
"peer_discovered": "2024-10-03 17:01:13"
},
{
...
}
]
Parameter | Type | Description |
---|---|---|
moniker | string | Nodes moniker name. |
chain_id | string | Chain ID the node is running. |
ip_address | string | IP Address of the node. |
peer_discovered | string | Timestamp of when the node was discovered. |
TN Peers Detailed
View a list of detailed peer information that are active on Celestia's testnet mocha-4.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/celestia/testnet/peers/detailed/
/celestia/testnet/peers/detailed/
This call does not take parameters.
Response
Sample 200 Response
[
{
"Moniker": "LiveRaveN",
"ChainId": "mocha-4",
"PeerDiscovered": "2024-10-03 17:02:16",
"IP": "104.219.235.50",
"Country": "United States",
"City": "Buffalo",
"Region": "North America",
"Latitude": 42.8864,
"Longitude": -78.8784,
"ISP": "DataWagon LLC",
"NodeType": "Validator",
"Tokens": 1000037,
"VotingPower": "0.18%",
"ValidatorStatus": "active"
},
{
"Moniker": "DerorisValidator",
"ChainId": "mocha-4",
"PeerDiscovered": "2024-10-03 17:02:16",
"IP": "113.43.234.98",
"Country": "Japan",
"City": "Tokyo",
"Region": "Asia",
"Latitude": 35.6837,
"Longitude": 139.6805,
"ISP": "ARTERIA Networks Corporation",
"NodeType": "Other",
"Tokens": null,
"VotingPower": null,
"ValidatorStatus": null
},
{
"Moniker": "kjnodes-testnet-backup",
"ChainId": "mocha-4",
"PeerDiscovered": "2024-10-03 17:02:16",
"IP": "116.202.231.58",
"Country": "Germany",
"City": "Falkenstein",
"Region": "Europe",
"Latitude": 50.4777,
"Longitude": 12.3649,
"ISP": "Hetzner Online GmbH",
"NodeType": "Other",
"Tokens": null,
"VotingPower": null,
"ValidatorStatus": null
},
{
"Moniker": "DSRV",
"ChainId": "mocha-4",
"PeerDiscovered": "2024-10-03 17:02:16",
"IP": "125.131.208.71",
"Country": "South Korea",
"City": "Seongbuk-gu",
"Region": "Asia",
"Latitude": 37.5814,
"Longitude": 127.0227,
"ISP": "Korea Telecom",
"NodeType": "Validator",
"Tokens": 3881201.93,
"VotingPower": "0.71%",
"ValidatorStatus": "active"
},
{
...
}
]
Parameter | Type | Description |
---|---|---|
Moniker | string | Nodes moniker name. |
ChainId | string | Chain ID the node is running. |
PeerDiscovered | string | Timestamp of when the node was discovered. |
IP | string | IP Address of the node. |
Country | string | Nodes Country. |
City | string | Nodes City. |
Region | string | Nodes world region location. |
Latitude | int | Nodes latitude coordinate. |
Longitude | int | Nodes longitude coordinate. |
ISP | string | Nodes hosting internet service provider. |
NodeType | string | States whether a node is a 'Validator' or 'Other'. |
Tokens | int | Total TIA self-stake & delegations. |
VotingPower | string | Validator voting power %. |
ValidatorStatus | string | States whether the validator is in the active set or not. |
TN Validators
View the current list of active & inactive validators on Celestia's testnet mocha-4.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/celestia/testnet/validators/
/celestia/testnet/validators/
This call does not take parameters.
Response
Sample 200 Response
[
{
"moniker": "DAS-MOCHA",
"tokens": 74052466.323521,
"voting_power": 13.631364843015273,
"validator_status": "active"
},
{
"moniker": "P-OPS Team",
"tokens": 70556583.473681,
"voting_power": 12.987852790811374,
"validator_status": "active"
},
{
"moniker": "Qubelabs",
"tokens": 64651386.093174,
"voting_power": 11.900841054942404,
"validator_status": "active"
},
{
"moniker": "Nodes.Guru",
"tokens": 28001063.494583,
"voting_power": 5.154355167855652,
"validator_status": "active"
},
{
"moniker": "Brightlystake",
"tokens": 27553991.305458,
"voting_power": 5.072059406165501,
"validator_status": "active"
},
{
"moniker": "ChainodeTech",
"tokens": 25045578.192111,
"voting_power": 4.610317940653013,
"validator_status": "active"
},
{
"moniker": "Stake🦑Squid",
"tokens": 25000169.765585,
"voting_power": 4.60195928820491,
"validator_status": "active"
},
{
"moniker": "MZONDER",
"tokens": 25000019.595,
"voting_power": 4.601931645235884,
"validator_status": "active"
},
{
"moniker": "NakoTurk",
"tokens": 24714090.178905,
"voting_power": 4.549298581360424,
"validator_status": "active"
},
{
"moniker": "Cumulo",
"tokens": 14078862.810427,
"voting_power": 2.5915965405561767,
"validator_status": "active"
},
{
"moniker": " Lavender.Five Nodes 🐝",
"tokens": 11050096.170986,
"voting_power": 2.0340698957824297,
"validator_status": "active"
},
{
"moniker": "polkachu.com",
"tokens": 11008052.108561,
"voting_power": 2.026330545793817,
"validator_status": "active"
},
{
"moniker": "Astria",
"tokens": 10509044.163311,
"voting_power": 1.9344745996117032,
"validator_status": "active"
},
{
"moniker": "wavefive",
"tokens": 5000006,
"voting_power": 0.9203867121116668,
"validator_status": "active"
},
{
"moniker": "Gunter",
"tokens": 4051757.455067,
"voting_power": 0.7458358494655908,
"validator_status": "active"
},
{
"moniker": "Staking4All",
"tokens": 4048857.958287,
"voting_power": 0.7453021184444434,
"validator_status": "active"
},
{
"moniker": "Alphabet",
"tokens": 4030218.062491,
"voting_power": 0.7418709400807005,
"validator_status": "active"
},
{
"moniker": "Conqueror",
"tokens": 4023467.720074,
"voting_power": 0.7406283564792387,
"validator_status": "active"
},
{
"moniker": "Validatus",
"tokens": 4009700.226374,
"voting_power": 0.7380940758682633,
"validator_status": "active"
},
{
"moniker": "01node",
"tokens": 4005162.287715,
"voting_power": 0.7372587451822358,
"validator_status": "active"
},
{
"moniker": "NodeStake",
"tokens": 4002311.922953,
"voting_power": 0.7367340582415369,
"validator_status": "active"
},
{
"moniker": "kjnodes",
"tokens": 4002064.371496,
"voting_power": 0.7366884896819019,
"validator_status": "active"
},
{
"moniker": "F5 Nodes",
"tokens": 4001171.920359,
"voting_power": 0.7365242098454969,
"validator_status": "active"
},
{
"moniker": "Imperator.co",
"tokens": 4001076.970464,
"voting_power": 0.7365067317421358,
"validator_status": "active"
},
{
"moniker": "staker-space",
"tokens": 4001057.77394,
"voting_power": 0.7365031981012545,
"validator_status": "active"
},
{
"moniker": "Cosmostation",
"tokens": 4000938.506635,
"voting_power": 0.7364812437190574,
"validator_status": "active"
},
{
"moniker": "ContributionDAO",
"tokens": 4000504.251618,
"voting_power": 0.7364013073055182,
"validator_status": "active"
},
{
"moniker": "Node Guardians",
"tokens": 4000472.648912,
"voting_power": 0.7363954899703652,
"validator_status": "active"
},
{
"moniker": "BlackBlocks",
"tokens": 4000470.610499,
"voting_power": 0.7363951147451676,
"validator_status": "active"
},
{
"moniker": "TrustedPoint",
"tokens": 4000108.79,
"voting_power": 0.7363285118692012,
"validator_status": "active"
},
{
"moniker": "Blockdaemon",
"tokens": 4000103.25,
"voting_power": 0.736327492081948,
"validator_status": "active"
},
{
"moniker": "Figment",
"tokens": 4000028.595833,
"voting_power": 0.7363137499577764,
"validator_status": "active"
},
{
"moniker": "Staked",
"tokens": 4000007,
"voting_power": 0.7363097746590007,
"validator_status": "active"
},
{
"moniker": "Easy 2 Stake",
"tokens": 3991125.109043,
"voting_power": 0.7346748217378948,
"validator_status": "active"
},
{
"moniker": "ZKV",
"tokens": 3961026.9,
"voting_power": 0.7291344300540575,
"validator_status": "active"
},
{
"moniker": "Stakely.io",
"tokens": 3960055.9475,
"voting_power": 0.7289556999127154,
"validator_status": "active"
},
{
"moniker": "B-Harvest",
"tokens": 3960033.716527,
"voting_power": 0.7289516076991966,
"validator_status": "active"
},
{
"moniker": "DSRV",
"tokens": 3881201.930001,
"voting_power": 0.71444047935044,
"validator_status": "active"
},
{
"moniker": "4SV",
"tokens": 3000010.5,
"voting_power": 0.5522332973991386,
"validator_status": "active"
},
{
"moniker": "Everstake",
"tokens": 1100007,
"voting_power": 0.202486122222617,
"validator_status": "active"
},
{
"moniker": "Validatrium",
"tokens": 1003008,
"voting_power": 0.18463082551134913,
"validator_status": "active"
},
{
"moniker": "node101",
"tokens": 1002290.103158,
"voting_power": 0.18449867712711843,
"validator_status": "active"
},
{
"moniker": "ChainTrails | 🛠️",
"tokens": 1001309,
"voting_power": 0.18431807848187,
"validator_status": "active"
},
{
"moniker": "hipparcos",
"tokens": 1000893.1,
"voting_power": 0.18424152080702577,
"validator_status": "active"
},
{
"moniker": "deNodes",
"tokens": 1000379.01,
"voting_power": 0.18414688859961853,
"validator_status": "active"
},
{
"moniker": "BwareLabs",
"tokens": 1000192.715936,
"voting_power": 0.18411259612455932,
"validator_status": "active"
},
{
"moniker": "[NODERS]TEAM",
"tokens": 1000043.947059,
"voting_power": 0.18408521117790794,
"validator_status": "active"
},
{
"moniker": "LiveRaveN",
"tokens": 1000037,
"voting_power": 0.1840839323832841,
"validator_status": "active"
},
{
"moniker": "P2P.ORG",
"tokens": 1000020.396,
"voting_power": 0.18408087596675823,
"validator_status": "active"
},
{
"moniker": "Stake&Relax 🦥",
"tokens": 1000009.8,
"voting_power": 0.18407892548557853,
"validator_status": "active"
},
{
"moniker": "0xFury",
"tokens": 1000009,
"voting_power": 0.18407877822388127,
"validator_status": "active"
},
{
"moniker": "21state",
"tokens": 1000002,
"voting_power": 0.18407748968403057,
"validator_status": "active"
},
{
"moniker": "vista_staking",
"tokens": 1000002,
"voting_power": 0.18407748968403057,
"validator_status": "active"
},
{
"moniker": "Enigma",
"tokens": 990480.317711,
"voting_power": 0.1823247658161503,
"validator_status": "active"
},
{
"moniker": "KingSuper",
"tokens": 990207.902,
"voting_power": 0.18227462031620992,
"validator_status": "active"
},
{
"moniker": "Anonstake",
"tokens": 980425.4,
"voting_power": 0.18047388550669052,
"validator_status": "active"
},
{
"moniker": "Stakin",
"tokens": 980313.990001,
"voting_power": 0.18045337747476498,
"validator_status": "active"
},
{
"moniker": "itrocket",
"tokens": 505271,
"voting_power": 0.09300883127247726,
"validator_status": "active"
},
{
"moniker": "Chocadeva-latte-mador",
"tokens": 502561.691971,
"voting_power": 0.09251010964916141,
"validator_status": "active"
},
{
"moniker": "openbitlab",
"tokens": 501058.9,
"voting_power": 0.09223348002888165,
"validator_status": "active"
},
{
"moniker": "Stakeflow",
"tokens": 501050.65,
"voting_power": 0.09223196139262903,
"validator_status": "active"
},
{
"moniker": "bitszn",
"tokens": 500401,
"voting_power": 0.0921123756906272,
"validator_status": "active"
},
{
"moniker": "TTT VN",
"tokens": 500009,
"voting_power": 0.09204021745898752,
"validator_status": "active"
},
{
"moniker": "Architect Nodes",
"tokens": 500006,
"voting_power": 0.09203966522762293,
"validator_status": "active"
},
{
"moniker": "CosmoWiz",
"tokens": 500005,
"voting_power": 0.09203948115050141,
"validator_status": "active"
},
{
"moniker": "DoraFactory",
"tokens": 500001.999481,
"voting_power": 0.09203892882360079,
"validator_status": "active"
},
{
"moniker": "Nodeinfra",
"tokens": 500001,
"voting_power": 0.09203874484201528,
"validator_status": "active"
},
{
"moniker": "Catuai",
"tokens": 496723.43558,
"voting_power": 0.09143542021795324,
"validator_status": "active"
},
{
"moniker": "Stakecito",
"tokens": 495995.789326,
"voting_power": 0.09130147719002499,
"validator_status": "active"
},
{
"moniker": " AutoStake 🛡️ Slash Protected",
"tokens": 495432.998,
"voting_power": 0.09119788018271298,
"validator_status": "active"
},
{
"moniker": "Avril14th",
"tokens": 476704.999997,
"voting_power": 0.08775048421830513,
"validator_status": "active"
},
{
"moniker": "Wetez",
"tokens": 150001,
"voting_power": 0.027611752306589656,
"validator_status": "active"
},
{
"moniker": "StakeUs",
"tokens": 150001,
"voting_power": 0.027611752306589656,
"validator_status": "active"
},
{
"moniker": "SenseiNode",
"tokens": 150001,
"voting_power": 0.027611752306589656,
"validator_status": "active"
},
{
"moniker": "ValiDAO",
"tokens": 107519.276899,
"voting_power": 0.019791839000532097,
"validator_status": "active"
},
{
"moniker": "CroutonDigital",
"tokens": 105245,
"voting_power": 0.019373196655402488,
"validator_status": "active"
},
{
"moniker": "Tane",
"tokens": 103324.8246,
"voting_power": 0.019019736294938177,
"validator_status": "active"
},
{
"moniker": "🔥STAVR🔥",
"tokens": 102501.9993,
"voting_power": 0.018868272982192295,
"validator_status": "active"
},
{
"moniker": "XPRV",
"tokens": 100448.67,
"voting_power": 0.01849030203509552,
"validator_status": "active"
},
{
"moniker": "Nodiums",
"tokens": 100370.3,
"voting_power": 0.018475875911081234,
"validator_status": "active"
},
{
"moniker": "StakeTown",
"tokens": 100314.1,
"voting_power": 0.018465530776851258,
"validator_status": "active"
},
{
"moniker": "NacionCrypto - Parceros",
"tokens": 100226.17,
"voting_power": 0.018449344875555145,
"validator_status": "active"
},
{
"moniker": "Cosmos Spaces",
"tokens": 100215.959957,
"voting_power": 0.018447465440229006,
"validator_status": "active"
},
{
"moniker": "SegaStakers",
"tokens": 100162,
"voting_power": 0.018437532646666577,
"validator_status": "active"
},
{
"moniker": "TendermintHub",
"tokens": 100136,
"voting_power": 0.018432746641506802,
"validator_status": "active"
},
{
"moniker": "BlackNodes",
"tokens": 100125,
"voting_power": 0.018430721793169975,
"validator_status": "active"
},
{
"moniker": "cryptech",
"tokens": 100120,
"voting_power": 0.018429801407562327,
"validator_status": "active"
},
{
"moniker": "Geodd",
"tokens": 100119.01,
"voting_power": 0.01842961917121201,
"validator_status": "active"
},
{
"moniker": "KYVE Public Good Funding",
"tokens": 100118,
"voting_power": 0.018429433253319267,
"validator_status": "active"
},
{
"moniker": "Cosmic Validator",
"tokens": 100105,
"voting_power": 0.01842704025073938,
"validator_status": "active"
},
{
"moniker": "silent",
"tokens": 100090,
"voting_power": 0.018424279093916432,
"validator_status": "active"
},
{
"moniker": "Decentrio",
"tokens": 100085,
"voting_power": 0.018423358708308784,
"validator_status": "active"
},
{
"moniker": "ERN VENTURES",
"tokens": 100045,
"voting_power": 0.018415995623447593,
"validator_status": "active"
},
{
"moniker": "UTSA & Let's Node",
"tokens": 100030,
"voting_power": 0.018413234466624646,
"validator_status": "active"
},
{
"moniker": "DTEAM",
"tokens": 100016,
"voting_power": 0.01841065738692323,
"validator_status": "active"
},
{
"moniker": "Nodes Hub 🛡️ 100% Slash Protected 🛡️",
"tokens": 100014,
"voting_power": 0.018410289232680167,
"validator_status": "active"
},
{
"moniker": "Maple Nodes",
"tokens": 100013.95,
"voting_power": 0.018410280028824094,
"validator_status": "active"
},
{
"moniker": "pro-nodes75",
"tokens": 100011,
"voting_power": 0.01840973700131558,
"validator_status": "active"
},
{
"moniker": "blockscape",
"tokens": 100005,
"voting_power": 0.0184086325385864,
"validator_status": "active"
},
{
"moniker": "NEOPIN",
"tokens": 100001,
"voting_power": 0.01840789623010028,
"validator_status": "active"
},
{
"moniker": "Veam",
"tokens": 49509929.831972,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "moonli.me",
"tokens": 117968.883643,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "A41",
"tokens": 99297.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Clorophilla",
"tokens": 99018.81,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "interchain.FM",
"tokens": 99010.8,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Twinstake",
"tokens": 99000.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "counterpoint",
"tokens": 30697.481016,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "kooltek68",
"tokens": 9121.023037,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "AVIAONE 🟢",
"tokens": 7298.042672,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Blockpower Capital",
"tokens": 5889.51,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Haruka",
"tokens": 4950.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Goose-Testnet",
"tokens": 4009.45,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ANCLO",
"tokens": 3158.59,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BITGO",
"tokens": 3022.51,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "hextrust",
"tokens": 2428.313168,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LatamNodes",
"tokens": 2375.412164,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Md_Validate",
"tokens": 1635.88,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "fible13",
"tokens": 1445.749644,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "WellNode 🦁",
"tokens": 1253.237318,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "JeTrix",
"tokens": 1224.54,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "myrtl",
"tokens": 1092.960001,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Donald",
"tokens": 1089,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "YUTK",
"tokens": 1081.08,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LuckyResearch",
"tokens": 1075,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Closing - Redelegate",
"tokens": 1059.819493,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "twinstake",
"tokens": 996.300002,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Earth+",
"tokens": 990.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "RozaS",
"tokens": 934.072,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "MAHOF",
"tokens": 873.947585,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "UbikCapital",
"tokens": 832.59,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "spidey",
"tokens": 707.46001,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Forbole",
"tokens": 699.5975,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "AM Solutions 🪐",
"tokens": 693.990101,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Benni",
"tokens": 618.55,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "C",
"tokens": 596.97,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "GPvalidator",
"tokens": 589.05,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "SilverSURF",
"tokens": 578.26,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Jav1xRisen",
"tokens": 564.3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Zhrand",
"tokens": 554.28537,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Rumbanoid",
"tokens": 512.82,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "spirit-saint",
"tokens": 511.672309,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Crypto_Universe",
"tokens": 382.14,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Iso_dayI",
"tokens": 336.6,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "bg-1",
"tokens": 298.98,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Rysiman",
"tokens": 279.33,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BloClick",
"tokens": 278.190501,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "UniqLabs",
"tokens": 270.57,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Stake.Works",
"tokens": 247.5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "KubikStaking",
"tokens": 214.631658,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "crosnest",
"tokens": 204,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BlockHunters 🎯",
"tokens": 174.24,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "gunslingertrades",
"tokens": 173.25,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Coinbase Cloud 1",
"tokens": 173.18742,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "KalpaTech",
"tokens": 172.581,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "node-spinter",
"tokens": 170,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Simply Staking",
"tokens": 164.188585,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Active Nodes",
"tokens": 159.387284,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Coinbase Cloud 2",
"tokens": 158,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "kpool",
"tokens": 157.030002,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "blobstream-test",
"tokens": 149.49,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "eudaimonia",
"tokens": 146.04,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "viennguyen",
"tokens": 138.6,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "5ElementsNodes",
"tokens": 133.2366,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "MadMax",
"tokens": 129.69,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "luciolaKami",
"tokens": 119.7,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "MONADA",
"tokens": 114.84,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "vincentgonzalezino",
"tokens": 109.89,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "0base.vc",
"tokens": 107.02,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "node stopped - please redelegate",
"tokens": 106.92,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Synergy Nodes",
"tokens": 106.92,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kube",
"tokens": 106.26,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Baza",
"tokens": 104.148026,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "doom",
"tokens": 101.85,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ritamorenono",
"tokens": 100.98,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Oneiric Stake",
"tokens": 100.87,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Provalidator",
"tokens": 99.164328,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Elektra",
"tokens": 96.948879,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "StakingCabin",
"tokens": 96.15169,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ceceliapark",
"tokens": 91.08,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "wendysmithy",
"tokens": 89.106799,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "shannoncarsolo",
"tokens": 89.10492,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "beulahburtono",
"tokens": 89.1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "sabrinaperucci",
"tokens": 89.1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Korniei",
"tokens": 87.12,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Crypto Plant",
"tokens": 86,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "estellaminor",
"tokens": 83.16,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "jimmybellboy",
"tokens": 81.18,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "williamkingdom",
"tokens": 80.69,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "lesia.lavigne",
"tokens": 79.2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "prestonmartine",
"tokens": 79.2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "montecarlo",
"tokens": 79.2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "caroldaisy",
"tokens": 79.2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "farahelen",
"tokens": 78.21,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "wilbert_clayton",
"tokens": 78.21,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "lestonkole",
"tokens": 78.21,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "jasonrenaldi",
"tokens": 78.21,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "stephenwho",
"tokens": 78.21,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "terryfreeman",
"tokens": 78.21,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "tobia_samato99",
"tokens": 71.28,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "inezheart",
"tokens": 70.29,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "keysakhiana",
"tokens": 70.29,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "lindsaysweety",
"tokens": 69.3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "jasoneduardo",
"tokens": 69.3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "kalthalaureen",
"tokens": 68.81,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "oliverussell",
"tokens": 68.31,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "smartinvest",
"tokens": 60.300371,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Clark",
"tokens": 59.4,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "nelsonorton",
"tokens": 58.41,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "cryptonodes",
"tokens": 52.16591,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "RomSM",
"tokens": 50,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Martezoy",
"tokens": 42.57,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Antho",
"tokens": 41.8,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Guzel",
"tokens": 40,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "DanielX",
"tokens": 40,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Merna",
"tokens": 40,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Bakerik",
"tokens": 40,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "blockhub",
"tokens": 38.800349,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kryz",
"tokens": 38,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "bashibozuk",
"tokens": 35.752345,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "StarkNode",
"tokens": 35,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kennethy",
"tokens": 35,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "KSerg",
"tokens": 35,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kirill_TE",
"tokens": 33,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Panda",
"tokens": 33,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "RIGOR",
"tokens": 30,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Robin",
"tokens": 30,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "NastyQueen",
"tokens": 30,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Uptown",
"tokens": 27,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Lopez",
"tokens": 25,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Thomilx",
"tokens": 25,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Sunshine",
"tokens": 20,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Smart Stake 📈📊",
"tokens": 18.996349,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Firstset",
"tokens": 16.65,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Starshipnodes",
"tokens": 15,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "genznodes",
"tokens": 15,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "RockawayX Infra",
"tokens": 14.810001,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Deroris Moniker2",
"tokens": 14,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "STAKEME",
"tokens": 13,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "disabled",
"tokens": 11.4,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "rawstake.io",
"tokens": 10.996464,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "DragonStake",
"tokens": 10.01,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "PigCash",
"tokens": 9.9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Liquify",
"tokens": 9.747001,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Jaha",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "CryptoSJnet",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "phucalidator",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ATN",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Bro_n_Bro",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Tanbmt",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Node&Validator",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Alessandro Mazza",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "notlus",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Oni ⛩ ",
"tokens": 9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Neuler",
"tokens": 8.22,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "xiaohhg",
"tokens": 8,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "GodsHunter",
"tokens": 7.4,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "finteh",
"tokens": 7,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Oneplus",
"tokens": 7,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "AikoDai",
"tokens": 7,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LinkGold",
"tokens": 7,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "StakeWithUs",
"tokens": 6,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Yellow_submarine",
"tokens": 5.94,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "danku_zone w/ DAIC",
"tokens": 5.94,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "StakePool",
"tokens": 5.94,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "🌐 KysenPool Celestia Test ",
"tokens": 5.350001,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "WEO",
"tokens": 5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "NODE.996",
"tokens": 5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Ttty",
"tokens": 5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Steven",
"tokens": 5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BTCGOT",
"tokens": 5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "0xmonn",
"tokens": 5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "lemniscap",
"tokens": 4,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "YK_NODE",
"tokens": 4,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Lemniscap",
"tokens": 3.940001,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Chorus One",
"tokens": 3.674278,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Avril_14th",
"tokens": 3.300003,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BlockBeacon",
"tokens": 3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "MOCHA",
"tokens": 3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "mocha-val",
"tokens": 3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "somenode",
"tokens": 3,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Kalia Network",
"tokens": 2.97,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Nocturnal Labs",
"tokens": 2.97,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Hello world",
"tokens": 2.000001,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "jcs",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "linear",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "(starm)",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "POSTHUMAN 🧬 StakeDrop",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "snoyiatk",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Citizen Web3",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "inklbot",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "inklbot",
"tokens": 2,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "gateway",
"tokens": 1.9,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "huanziqi",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "bertinode",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "vrpx_celestest",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "EquinoxDao",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ValidatorVN",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "half",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "amazing",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "StakePool",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "SkySkipper_Celestia_V",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "CryptoPioneers DAO",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Cosmonaut Stakes TIA",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Luganodes",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ymikh",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "cosmosrescue",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "SaLiap",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "gain",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Altiplanic",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ExaHash",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "IcyCRO 🧊",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "SG-1",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "fully",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "CGSol",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "POSTHUMAN",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "nobita-validator",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Nocturnal",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Dikci",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "meowmix",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "testosu",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ValidatorVN.com",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "wenda",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "admit",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "momo",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "silk-celestia",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "w3.labs",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Chainflow",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "ziyy",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Nova",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "late",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "DXN",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "%arg",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "echoic",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "test1234",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Blockpower",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "BonyNode💚",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Restake",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "CC Validator",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "iamicf",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Moonlet",
"tokens": 1,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "melea",
"tokens": 0.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "mocha-4",
"tokens": 0.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "HoodRun",
"tokens": 0.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LowFeeValidation",
"tokens": 0.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "“GPvalidator”",
"tokens": 0.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "LowFeeValidation",
"tokens": 0.99,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "gordepoks",
"tokens": 0.5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Klein v1: Forrest",
"tokens": 0.5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "klein",
"tokens": 0.5,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "fible1",
"tokens": 0.4,
"validator_status": "inactive",
"voting_power": 0
},
{
"moniker": "Hello world",
"tokens": 1e-06,
"validator_status": "inactive",
"voting_power": 0
}
]
Parameter | Type | Description |
---|---|---|
moniker | string | Validator moniker name. |
tokens | int | Total TIA self-stake & delegations. |
validator_status | string | States whether the validator is in the active set or not. |
voting_power | int | Validator voting power %. |
The Graph
Call | Description |
---|---|
allocations | View allocation info for the given Indexer. |
indexer | View The Graph Indexer metrics. |
indexers | View list of indexers on The Graph network. |
IPFS | Converts subgraph ID to IPFS hash. |
network | View The Graph network information. |
Allocations
Sample Data
{
"indexer_address": "0x5ddee9720e17aad28febb55643cd8ab50c51c60b"
}
View allocation info for the given Indexer.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/graph/arbitrum/allocations/0x5ddee9720e17aad28febb55643cd8ab50c51c60b
/graph/arbitrum/allocations/[indexer_address]
Parameter | Type | Description |
---|---|---|
indexer_address | string | The Graph Indexer address. |
Response Parameters
Sample 200 Response
[
{
"id": "0x3f04c8f404d733af2826bb11b373089d7adf1854",
"pending_reward": 0,
"created_at": 1719616450,
"time_elapsed": 500.02,
"pending_reward_rate": 0,
"subgraph_id": "0x9d92994260d3d72e6bc7875b35254fdd39e08e4a36a633973d3df284eb59e302",
"subgraph_ipfs": "QmYwkNTGCHFu2Q1Kmmd5TrcqvruLMjKjzsGVJaikK6dpXj",
"subgraph_name": "hop-protocol-mainnet-studio",
"allocated_tokens": "500000.00",
"created_at_epoch": 578,
"denied_at": 0,
"active_epochs": 21
},
{
"id": "0x853242cf222008e6fff4362d6b3c96ae39bba918",
"pending_reward": 0,
"created_at": 1721358446,
"time_elapsed": 16.13,
"pending_reward_rate": 0,
"subgraph_id": "0x13ac05d684e410ba8cddd8071bf10625cea68aef392869ed00d2f99511e1b681",
"subgraph_ipfs": "QmPfSbPF6PcT2ETAXMoFCPcz2CaKysRBXcUecHPySK66rk",
"subgraph_name": "premia-blue",
"allocated_tokens": "8298699.00",
"created_at_epoch": 598,
"denied_at": 0,
"active_epochs": 1
},
{
"id": "0xbca2a197ad6bfcc9c78eed1f1236a7f835c4c21b",
"pending_reward": 0,
"created_at": 1719616450,
"time_elapsed": 500.02,
"pending_reward_rate": 0,
"subgraph_id": "0xf114ee0b71d4f7d04fa80af3377d19acb641c8f8c7b8fbd19e3cb1e8a0ca8f07",
"subgraph_ipfs": "QmeZjUWjtPe7RMNMmhYiWELoStN3mBqzARQ3Z5Cqd3FVfk",
"subgraph_name": "snowball_contracts",
"allocated_tokens": "151179.00",
"created_at_epoch": 578,
"denied_at": 0,
"active_epochs": 21
},
{
"id": "0xcba80079abd0d94f1a24cb0cdb5601717e59ea29",
"pending_reward": 0,
"created_at": 1719616450,
"time_elapsed": 500.02,
"pending_reward_rate": 0,
"subgraph_id": "0xd1887c1de2c9e6acafbb70bedefea0e4f549e8e31d7b3ac03539facfc6d25aa3",
"subgraph_ipfs": "QmcSadGwqAHyz74chcy9G8NaoZ1RuzfejFJBpoZbamtEga",
"subgraph_name": "alloy",
"allocated_tokens": "400000.00",
"created_at_epoch": 578,
"denied_at": 0,
"active_epochs": 21
}
]
Parameter | Type | Description |
---|---|---|
id | string | Allocation ID. |
pending_reward | int | Pending GRT rewards for allocation. |
created_at | int | Time stamp on allocation creation. |
time_elapsed | int | How long the allocation has been active. |
pending_reward_rate | int | Pending GRT reward rate for the allocation. |
subgraph_id | string | Allocated Subgraph ID. |
subgraph_ipfs | string | Allocated Subgraph IPFS. |
subgraph_name | string | Allocated Subgraph name. |
allocated_tokens | string | Allocated tokens to the subgraph. |
created_at_epoch | int | Epoch Subgraph was allocated in. |
denied_at | int | Block number Subgraph was denied rewards. |
active_epochs | int | How many epochs the allocation has been active for. |
Indexer
Sample Data
{
"indexer_address": "0x5ddee9720e17aad28febb55643cd8ab50c51c60b"
}
View The Graph Indexer metrics.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/graph/arbitrum/indexer/0x5ddee9720e17aad28febb55643cd8ab50c51c60b
/graph/arbitrum/indexer/[indexer_address]
Parameter | Type | Description |
---|---|---|
indexer_address | string | The Graph Indexer address. |
Response Parameters
Sample 200 Response
{
"indexer": "0x5ddee9720e17aad28febb55643cd8ab50c51c60b",
"indexer_name": "null",
"total_allowable_stake": 9349878.34,
"total_allowable_stake_usd": 2008297.77,
"total_allocated_stake": 9349878,
"total_allocated_stake_usd": 2008297.7,
"allocation_difference": 0.34,
"allocation_difference_usd": 0.07,
"allocation_percent": 100,
"time_first_allocation": "Fri Jun 28 23:14:10 UTC 2024",
"time_lapsed_first_allocation": "20d 20h 18m 55s ago",
"time_last_allocation": "Fri Jul 19 03:07:26 UTC 2024",
"time_lapsed_last_allocation": "16h 25m 39s ago",
"time_lapsed_last_allocation_raw": 1721358446,
"pending_rewards": 0,
"pending_rewards_usd": 0,
"pending_rewards_hourly": 0,
"pending_rewards_hourly_usd": 0,
"pending_rewards_indexer": 0,
"pending_rewards_indexer_usd": 0,
"pending_rewards_indexer_hourly": 0,
"pending_rewards_indexer_hourly_usd": 0,
"pending_rewards_delegator": 0,
"pending_rewards_delegator_usd": 0,
"pending_rewards_delegator_hourly": 0,
"pending_rewards_delegator_hourly_usd": 0,
"total_query_rebates": 512.73,
"total_query_rebates_usd": 110.13,
"indexer_stake": 2080659.78,
"indexer_stake_usd": 446913.24,
"indexer_reward_cut": 30.15,
"indexer_rewards": 202524.55,
"indexer_rewards_usd": 43501.06,
"indexer_reward_effective_cut": 10.16,
"indexer_query_cut": 84.48,
"indexer_query_fees": 512.73,
"indexer_query_fees_usd": 110.13,
"indexer_query_rebates": 424.44,
"indexer_query_rebates_usd": 91.17,
"indexer_query_fee_effective_cut": 80.04,
"total_delegated": 7269218.56,
"total_delegated_usd": 1561384.53,
"delegator_reward_cut": 69.85,
"delegator_rewards": 615299.89,
"delegator_rewards_usd": 132162.72,
"delegator_query_cut": 15.52,
"delegator_query_fees": 88.29,
"delegator_query_fees_usd": 18.96,
"total_rewards": 817824.44,
"total_rewards_usd": 175663.78,
"grt_usd": 0.214794
}
Parameter | Type | Description |
---|---|---|
indexer | string | Address of Indexer. |
indexer_name | string | ENS name of Indexer, empty if not set. |
total_allowable_stake | int | Total GRT allowed to be allocated. |
total_allowable_stake_usd | int | Value ($USD) of total GRT allowed to be allocated. |
total_allocated_stake | int | Total GRT currently in allocation. |
total_allocated_stake_usd | int | Value ($USD) of the total GRT currently in allocation. |
allocation_difference | int | Difference of total allowable GRT vs allocated GRT. |
allocation_difference_usd | int | Value ($USD) of the allocation difference. |
allocation_percent | int | Allocated GRT vs Allowable GRT (%). |
time_first_allocation | string | Timestamp (UTC) of first allocation. |
time_lapsed_first_allocation | string | Time that has elapsed since first allocation. |
time_last_allocation | string | Timestamp (UTC) of last allocation. |
time_lapsed_last_allocation | string | Time that has elapsed since last allocation. |
time_lapsed_last_allocation_raw | int | Time that has elapsed since last allocation, raw format. |
pending_rewards | int | Total GRT the Indexer has accrued in their current open allocation. |
pending_rewards_usd | int | Value ($USD) of the total pending rewards. |
pending_rewards_hourly | int | Total pending reward rate (GRT/hr). |
pending_rewards_hourly_usd | int | Total pending reward rate ($USD/hr). |
pending_rewards_indexer | int | Amount of accrued GRT that is awarded to the Indexer. |
pending_rewards_indexer_usd | int | Value ($USD) of Indexer's pending rewards. |
pending_rewards_indexer_hourly | int | Indexer pending reward rate (GRT/hr). |
pending_rewards_indexer_hourly_usd | int | Indexer pending reward rate ($USD/hr). |
pending_rewards_delegator | int | Amount of accrued GRT that is awarded to the Delegator. |
pending_rewards_delegator_usd | int | Value ($USD) of Delegator's pending rewards. |
pending_rewards_delegator_hourly | int | Delegator pending reward rate (GRT/hr). |
pending_rewards_delegator_hourly_usd | int | Delegator pending reward rate ($USD/hr). |
total_query_rebates | int | Total GRT query fees rewarded to Indexer & Delegator. |
total_query_rebates_usd | int | Value ($USD) total GRT query fees. |
indexer_stake | int | Total GRT the Indexer is staking. |
indexer_stake_usd | int | Value ($USD) of Indexer's total stake. |
indexer_reward_cut | int | Indexer's reward cut (%). |
indexer_rewards | int | Total amount of GRT the Indexer has been rewarded. |
indexer_rewards_usd | int | Value ($USD) of Indexer's total rewards. |
indexer_reward_effective_cut | int | Indexer's rewards effective cut (%). |
indexer_query_cut | int | Indexer's query fees cut (%). |
indexer_query_fees | int | Total GRT query fees. |
indexer_query_fees_usd | int | Value ($USD) of total query fees. |
indexer_query_rebates | int | Total GRT query fee rebates rewarded to the Indexer. |
indexer_query_rebates_usd | int | Value ($USD) of Indexer query fee rebates. |
indexer_query_fee_effective_cut | int | Indexer's query fee effective cut (%). |
total_delegated | int | Total GRT delegated to the Indexer. |
total_delegated_usd | int | Value ($USD) of total delegations. |
delegator_reward_cut | int | Delegator's reward cut (%). |
delegator_rewards | int | Total amount of GRT Delegator's have been rewarded. |
delegator_rewards_usd | int | Value ($USD) of Delegator's total rewards. |
delegator_query_cut | int | Delegator's query fees cut (%). |
delegator_query_fees | int | Total GRT query fee rebates rewarded to Delegator's. |
delegator_query_fees_usd | int | Value ($USD) of Delegator query fee rebates. |
total_rewards | int | Total GRT rewards for this Indexer. |
total_rewards_usd | int | Value ($USD) of total rewards for this Indexer. |
grt_usd | int | $USD value of 1 GRT. |
Indexers
View list of indexers on The Graph network.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/graph/arbitrum/indexers/
/graph/arbitrum/indexers/
This call does not take parameters.
Response
Sample 200 Response
[
{
"id": "0x0058223c6617cca7ce76fc929ec9724cd43d4542",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 19.99652213523228,
"queryFeeEffectiveCut": 19.99652213523228,
"stakedTokens": 2999743.2255855203,
"delegatedTokens": 7712427.991613409,
"allocatedTokens": 10702212.2
},
{
"id": "0x015cb4f88c16dfaf90fa350af5338c4424a0d490",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x01e110178f15aeec1cccc507939109175dc9c121",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 21883.092225386292,
"allocatedTokens": 0
},
{
"id": "0x01f17c392614c7ea586e7272ed348efee21b90a3",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 68.62049241206756,
"queryFeeEffectiveCut": 68.62049241206756,
"stakedTokens": 3420000,
"delegatedTokens": 8021743.070691987,
"allocatedTokens": 11441742.999999998
},
{
"id": "0x047739cb42c227489cccd11aa5f28aa4eb46d2cf",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -7.6796474313798475,
"queryFeeEffectiveCut": -7.6796474313798475,
"stakedTokens": 191076.8894790567,
"delegatedTokens": 108503.7411866267,
"allocatedTokens": 289605
},
{
"id": "0x066636093e6c3417a0b46c3ecfbd34b5bda00092",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 118775057.76583071,
"delegatedTokens": 21844.933843762134,
"allocatedTokens": 101296780
},
{
"id": "0x07ca020fdde5c57c1c3a783befdb08929cf77fec",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 1319740.7218691076,
"allocatedTokens": 0
},
{
"id": "0x089f78d8cf0a5ae1b7a581b1910a73f8cb3e4774",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 8.380337352521604,
"queryFeeEffectiveCut": 24.91975388745832,
"stakedTokens": 2356551.4812143072,
"delegatedTokens": 26742676.06838959,
"allocatedTokens": 29093417
},
{
"id": "0x0b304924faa64b0f040dca67bc5175dd6078db52",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x0b9d582b7fdd387ba13ad7f453d49af255a8ed5e",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -0.7305771920284391,
"queryFeeEffectiveCut": -0.7305771920284391,
"stakedTokens": 636120.0241284744,
"delegatedTokens": 3437267.5198670216,
"allocatedTokens": 4250865
},
{
"id": "0x0df89dd9c34f78f70eb6a528a1eeac9a6238a2af",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 5411.117438898256,
"allocatedTokens": 0
},
{
"id": "0x0ee8e5dfea4315fe69a4e0fe84f50cbfce8f1021",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -65.09908644519702,
"queryFeeEffectiveCut": -65.09908644519702,
"stakedTokens": 100344.9686557824,
"delegatedTokens": 120255.08706568294,
"allocatedTokens": 223000
},
{
"id": "0x0fd8fd1dc8162148cb9413062fe6c6b144335dbf",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 14.126621627700938,
"queryFeeEffectiveCut": 14.126621627700938,
"stakedTokens": 11149898.876865612,
"delegatedTokens": 96754829.72740705,
"allocatedTokens": 109232378.37
},
{
"id": "0x1254cecc9da2b8c8ea40d3bc702ad7c17c9de7ad",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 99999.99999999999,
"delegatedTokens": 49.75,
"allocatedTokens": 0
},
{
"id": "0x17def1a43a323c711c7a32101ecf41e58eff54a2",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 1575336.833854131,
"delegatedTokens": 3203061.990173818,
"allocatedTokens": 4777600
},
{
"id": "0x19a4fe7d0c76490cca77b45580846cdb38b9a406",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 142583.2770949153,
"delegatedTokens": 269.0413981042654,
"allocatedTokens": 141000
},
{
"id": "0x1a8fe956924825f7f3be904c38f063225b43d3f1",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 1025077,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x1b7e0068ca1d7929c8c56408d766e1510e54d98d",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 29.836145019786624,
"queryFeeEffectiveCut": 89.20556077227486,
"stakedTokens": 4983635.290948178,
"delegatedTokens": 62731485.5186437,
"allocatedTokens": 67715151
},
{
"id": "0x1b92e4cba0f82c85c1298af861247849988c788c",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.272724206250519,
"queryFeeEffectiveCut": 75.36166348946878,
"stakedTokens": 542141.9774835192,
"delegatedTokens": 4318062.159287907,
"allocatedTokens": 4840864
},
{
"id": "0x1c151923cf6c381c4af6c3071a2773b3cdbbf704",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 105.84549211528004,
"allocatedTokens": 0
},
{
"id": "0x1ffd6f7fcd56e9c4966bdb68aa4a19c13d401371",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x2121bc6437100fc21d19a9eea30898419e020afa",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 99999.99999999999,
"delegatedTokens": 6385.263701235046,
"allocatedTokens": 0
},
{
"id": "0x269ebeee083ce6f70486a67dc8036a889bf322a9",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -21.403995177706317,
"queryFeeEffectiveCut": -21.403995177706317,
"stakedTokens": 130526.53551100811,
"delegatedTokens": 374073.0480155658,
"allocatedTokens": 490000.00000000006
},
{
"id": "0x2b3c7d1ef5fdfc0557934019c531d3e70d6200ae",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 123573300,
"delegatedTokens": 3473.0554318521404,
"allocatedTokens": 123576773
},
{
"id": "0x2d2771e17fe8daff29b6d903559ec1c8192945b0",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x2e15f3f0d37b191c33ee06e953c8cce4c493b47a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 9.801082404242708,
"queryFeeEffectiveCut": 9.801082404242708,
"stakedTokens": 3016488.922737643,
"delegatedTokens": 2628534.8525364627,
"allocatedTokens": 5623895.000000001
},
{
"id": "0x2e8d26e9b0d280738728e71c37bf05e70a636238",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 18.725097836826716,
"queryFeeEffectiveCut": 18.725097836826716,
"stakedTokens": 1924870.8746406173,
"delegatedTokens": 3077341.160969618,
"allocatedTokens": 4974409.999999999
},
{
"id": "0x2f09092aacd80196fc984908c5a9a7ab3ee4f1ce",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 5.974983588322588,
"queryFeeEffectiveCut": 87.07156024339436,
"stakedTokens": 36635725.616492935,
"delegatedTokens": 208973591.42333436,
"allocatedTokens": 241834132
},
{
"id": "0x3185992ac24824097047f2eb9af066bde07919b8",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 18398358.501259282,
"delegatedTokens": 24877893.408347476,
"allocatedTokens": 43276232
},
{
"id": "0x3201f41d63af25c0b6fd3954d0e103e4db0dbfe1",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x326c584e0f0eab1f1f83c93cc6ae1acc0feba0bc",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.020706007278548,
"queryFeeEffectiveCut": 50.059339219350775,
"stakedTokens": 1875354.121251449,
"delegatedTokens": 24576325.329339117,
"allocatedTokens": 26794679
},
{
"id": "0x32bbd16a94ebb289edceebe77f35acc82664157b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 1054317.9929767775,
"delegatedTokens": 14382014.34151006,
"allocatedTokens": 15436000
},
{
"id": "0x345c9a221e4caa15f78fb8078c441745de48a225",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 4.2933360791050434,
"queryFeeEffectiveCut": 4.2933360791050434,
"stakedTokens": 1033986.7711881195,
"delegatedTokens": 6754007.388791421,
"allocatedTokens": 7791322
},
{
"id": "0x35917c0eb91d2e21bef40940d028940484230c06",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 24.138745038445222,
"queryFeeEffectiveCut": 24.138745038445222,
"stakedTokens": 22177962.27238982,
"delegatedTokens": 10901206.767879495,
"allocatedTokens": 33078825
},
{
"id": "0x3863a65ce278a240f9aa2a4b4a48493be59e6139",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -88.29119113039346,
"queryFeeEffectiveCut": -88.29119113039346,
"stakedTokens": 120247.28298048329,
"delegatedTokens": 122449.84488598986,
"allocatedTokens": 241258
},
{
"id": "0x38f412c8d6346a17a53ff9ceecd2e01acecd27c0",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 20.174250500346698,
"queryFeeEffectiveCut": 20.174250500346698,
"stakedTokens": 13528706.88777304,
"delegatedTokens": 22679575.72689045,
"allocatedTokens": 35987762.190588996
},
{
"id": "0x39990037277a3574ba7b39733466068b37fe8120",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 396081.0861983239,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x3b9ba748691f135b71582dc3292e5e3ed7e13341",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.376346694515933,
"queryFeeEffectiveCut": 100,
"stakedTokens": 345150.3355956086,
"delegatedTokens": 1138024.5038477434,
"allocatedTokens": 1483174
},
{
"id": "0x3e1536fc83cd5bed83a521a26034ff3e59c6a7c4",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.07338076616134,
"queryFeeEffectiveCut": 11.07338076616134,
"stakedTokens": 250503.768692921,
"delegatedTokens": 2245004.6283441475,
"allocatedTokens": 2492546
},
{
"id": "0x3f74870f80ff7449fe4c6ff257da5fa72734c970",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.423599862675907,
"queryFeeEffectiveCut": 11.423599862675907,
"stakedTokens": 5816489.005190246,
"delegatedTokens": 15266962.51069636,
"allocatedTokens": 21065918
},
{
"id": "0x40a8acdebaf6c0ae0ef04ad375b0869f885c8d82",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 101137.44005273208,
"delegatedTokens": 102.485,
"allocatedTokens": 0
},
{
"id": "0x4207df52f7ff229364899b21e9c4ad36d3d42981",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 8.639811380477717,
"queryFeeEffectiveCut": 8.639811380477717,
"stakedTokens": 186651.42366223104,
"delegatedTokens": 235856.74230891283,
"allocatedTokens": 412558
},
{
"id": "0x4c2bcfd78a30931b7ca73c84f05670bb34ce58ee",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 2761.073477877451,
"allocatedTokens": 0
},
{
"id": "0x4d67938e9b07681526fe0345a45b770bba88c659",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 15.953123218509596,
"queryFeeEffectiveCut": 15.953123218509596,
"stakedTokens": 372100.00730100536,
"delegatedTokens": 3466652.474517921,
"allocatedTokens": 3832910.0000000005
},
{
"id": "0x4e5c87772c29381bcabc58c3f182b6633b5a274a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 20.03999474512961,
"queryFeeEffectiveCut": 66.29829826103355,
"stakedTokens": 9645169.99999,
"delegatedTokens": 110671087.66568531,
"allocatedTokens": 118093716.00000001
},
{
"id": "0x4f45530236e1c6603870301010dcab7b561125b3",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -24.967717550091088,
"queryFeeEffectiveCut": 100,
"stakedTokens": 1938694.11,
"delegatedTokens": 912673.2674004479,
"allocatedTokens": 2851428
},
{
"id": "0x4fc5a6f02862ce1d663cd031a60a6d9149a441e2",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 635643.0640586392,
"delegatedTokens": 1751183.9803469218,
"allocatedTokens": 2386827
},
{
"id": "0x51637a35f7f054c98ed51904de939b9561d37885",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.054829984258843,
"queryFeeEffectiveCut": 10.054829984258843,
"stakedTokens": 290000,
"delegatedTokens": 4338804.31853914,
"allocatedTokens": 4612918
},
{
"id": "0x53dbbc9d916b1840a2c4c26b150ba2e13f36e10f",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 26.784460829300144,
"queryFeeEffectiveCut": 88.9067364892879,
"stakedTokens": 424071.9505683082,
"delegatedTokens": 3878954.583347322,
"allocatedTokens": 4303051
},
{
"id": "0x550c1f4814a85aa10f5f061ca8c45e2ee9620226",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 9.867484615500995,
"queryFeeEffectiveCut": 9.867484615500995,
"stakedTokens": 527622.2510233069,
"delegatedTokens": 952371.4590397272,
"allocatedTokens": 1467640.0000000002
},
{
"id": "0x563040fa6547054620b9c02ba288b6f7267ae6ff",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 2082.3186701348236,
"allocatedTokens": 0
},
{
"id": "0x594f52d3fccda979bb036bf14ea43a9d6f307f35",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 102626.0193085553,
"delegatedTokens": 41.79643793335766,
"allocatedTokens": 0
},
{
"id": "0x59749d1fa9635cd0413aeff5ee295490a7e87f54",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 4.811341044068382,
"queryFeeEffectiveCut": 16.709923413559835,
"stakedTokens": 1139587.4906209172,
"delegatedTokens": 6002307.347487711,
"allocatedTokens": 7126882
},
{
"id": "0x5b3c8f7245dfbd9bea22d9c4b975df60a638e5a3",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 33.82479997941811,
"queryFeeEffectiveCut": 28.734399977834883,
"stakedTokens": 5350000,
"delegatedTokens": 582737.8875647866,
"allocatedTokens": 5932009
},
{
"id": "0x5d7c6e41ca423c4877e0124a9a3de0817dcb43f1",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 101825.59203249543,
"delegatedTokens": 90.94521255722695,
"allocatedTokens": 0
},
{
"id": "0x5ddee9720e17aad28febb55643cd8ab50c51c60b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.156917555980597,
"queryFeeEffectiveCut": 80.03772885424222,
"stakedTokens": 2080659.7844026012,
"delegatedTokens": 7269218.558341711,
"allocatedTokens": 9349878
},
{
"id": "0x5e98a3ae86332d5f493f88f6e0c363fda891d30f",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x600f2b53719e1dbacf340572b31a9df9921b82fa",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 900000,
"delegatedTokens": 658549.7679681286,
"allocatedTokens": 1558549
},
{
"id": "0x60df13b7a598772e992f9365fba5ed6e1529e79a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 133947.35491380066,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x63c9dc729ba7a22bb8605216b24a34b902e5fe94",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 41.26255334489493,
"queryFeeEffectiveCut": 41.26255334489493,
"stakedTokens": 10208470.924422473,
"delegatedTokens": 150227134.36627007,
"allocatedTokens": 71904643
},
{
"id": "0x65a077ebd29e5e7ed8997a4b923dc7dbdb7c98a3",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 277.0407437765635,
"allocatedTokens": 0
},
{
"id": "0x665e4bc3571ebf27ea282fa4b2be995501ec883c",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 230.47448979591837,
"allocatedTokens": 0
},
{
"id": "0x6c7c332a090c8d2085857cf3220ea01c6d45a723",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 12298.934640587378,
"allocatedTokens": 0
},
{
"id": "0x6f3ce93a09f30f18d728d2364268b5fe9444b89e",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 2002591.2545522628,
"delegatedTokens": 22888830.16695205,
"allocatedTokens": 24891417
},
{
"id": "0x6f8a032b4b1ee622ef2f0fc091bdbb98cfae81a3",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.004421497852098,
"queryFeeEffectiveCut": 10.004421497852098,
"stakedTokens": 10000498.902996749,
"delegatedTokens": 2169635.9651744235,
"allocatedTokens": 12170109.200000001
},
{
"id": "0x6f9bb7e454f5b3eb2310343f0e99269dc2bb8a1d",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.430450339675561,
"queryFeeEffectiveCut": 10.430450339675561,
"stakedTokens": 3611876.1784856166,
"delegatedTokens": 5555543.804193641,
"allocatedTokens": 9167365.22
},
{
"id": "0x748aefb5c1c30c4a4ea963a6c49e90c00bdca15b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -434.31045416345313,
"queryFeeEffectiveCut": -434.31045416345313,
"stakedTokens": 189792.5755216486,
"delegatedTokens": 17031.807606877246,
"allocatedTokens": 0
},
{
"id": "0x74dbb201ecc0b16934e68377bc13013883d9417b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 100014.86317761986,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x7bb834017672b1135466661d8dd69c5dd0b3bf51",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.852522719214969,
"queryFeeEffectiveCut": 67.72730878174822,
"stakedTokens": 5041361.482347663,
"delegatedTokens": 66547027.26698116,
"allocatedTokens": 71588251
},
{
"id": "0x80451b373f865f8143ee6a75445228c6c097ae7e",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 101054.60217157728,
"delegatedTokens": 657.9324113730318,
"allocatedTokens": 0
},
{
"id": "0x863e1fc588651c432a1bbb7c8afdf2c3d34921ea",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 56.78839025143792,
"queryFeeEffectiveCut": 56.78839025143792,
"stakedTokens": 337559.98541857227,
"delegatedTokens": 101639.15208391463,
"allocatedTokens": 435300
},
{
"id": "0x87eba079059b75504c734820d6cf828476754b83",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x88888888a51765b09a32e8930e1ba1a17927ebad",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x8d632dfc2454d624910fe982e85a5b15d2ae93c5",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 5.052957965605305,
"queryFeeEffectiveCut": 5.052957965605305,
"stakedTokens": 582739.408092449,
"delegatedTokens": 3082176.0733110197,
"allocatedTokens": 3665957.0000000005
},
{
"id": "0x8d9b156dfe8fd8191b7a4e1c0f5903b0984afcd3",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 2270677.7707161144,
"delegatedTokens": 20097060.0459595,
"allocatedTokens": 22367318
},
{
"id": "0x8f689a83dd52eaa1d5ad6a40c46189b4a0d70b06",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -59.55157851363969,
"queryFeeEffectiveCut": -59.55157851363969,
"stakedTokens": 174603.99992808374,
"delegatedTokens": 136483.13293667152,
"allocatedTokens": 820000
},
{
"id": "0x915b75d0f2a05efbf34342756942c55ece0944ac",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 68.26758147512865,
"allocatedTokens": 0
},
{
"id": "0x918fcc24e6b7f5ec73b4cf766e2393d8fe707541",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 5.307179018417254,
"queryFeeEffectiveCut": 5.307179018417254,
"stakedTokens": 1489378.943802409,
"delegatedTokens": 23284541.429855555,
"allocatedTokens": 24765000
},
{
"id": "0x91f137715ef8e141d6a8074cbbbc53a0f76b09c5",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -7.626772783139223,
"queryFeeEffectiveCut": -7.626772783139223,
"stakedTokens": 300000,
"delegatedTokens": 3933511.7031835625,
"allocatedTokens": 4219567
},
{
"id": "0x920fdeb00ee04dd72f62d8a8f80f13c82ef76c1e",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.86329508185303,
"queryFeeEffectiveCut": 69.9078131734133,
"stakedTokens": 1907036.591614856,
"delegatedTokens": 13635757.989303894,
"allocatedTokens": 15470590.31
},
{
"id": "0x958ad15ea21fb79b935524cf90c90276031bee20",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 4.792097732085838,
"queryFeeEffectiveCut": 4.792097732085838,
"stakedTokens": 1261061.3884155457,
"delegatedTokens": 100075.27094451511,
"allocatedTokens": 1362169.9999999998
},
{
"id": "0x9611663c4057cbfc9d2589a04fcac24dbd38612d",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 99999.99999999999,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0x995349b0bba3300049f2e794920151f64a78c691",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 107194.92165291483,
"delegatedTokens": 162592.83,
"allocatedTokens": 599700.7
},
{
"id": "0x9a8be56015d32995e82745e14cb9d5dfb0cfac9d",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 113020.19926335244,
"delegatedTokens": 75574.3532608135,
"allocatedTokens": 188594
},
{
"id": "0x9ada64ca2fa91318e2de0ff678a8a935859954f4",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 10.945,
"allocatedTokens": 0
},
{
"id": "0x9d2adf4bbbe140020baf520ed084f8a1f38f643c",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -17.46187840116011,
"queryFeeEffectiveCut": 74.73938098899782,
"stakedTokens": 1254509.5499399928,
"delegatedTokens": 4769437.008520419,
"allocatedTokens": 5980000.000000001
},
{
"id": "0x9da1017766bfeb2835db4f811516eea68996538b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 12.523058317250776,
"queryFeeEffectiveCut": 12.523058317250776,
"stakedTokens": 3297941.564184171,
"delegatedTokens": 40630615.197382726,
"allocatedTokens": 43928556.76
},
{
"id": "0xa01b06b0e9feb016d5ab669ce89d059bc666e569",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 39.80104281498435,
"queryFeeEffectiveCut": 39.80104281498435,
"stakedTokens": 371546.57848262787,
"delegatedTokens": 2260154.7094999854,
"allocatedTokens": 2631557
},
{
"id": "0xa28a99b0219a34142a9398a19460fcd69250a2b2",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 300000,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0xa4d629ba2ffb3321008d8cec37cca077696bf24d",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 112242.83250217845,
"delegatedTokens": 74.625,
"allocatedTokens": 103060
},
{
"id": "0xa6ff993e0f6253f1b7f55c873577a2f0f0ceb325",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 8515900.469147101,
"delegatedTokens": 0,
"allocatedTokens": 8515786
},
{
"id": "0xa959b5afe73c6faa803541b5c4edc0492dfda294",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 101063.79754217052,
"delegatedTokens": 2955.42533777377,
"allocatedTokens": 0
},
{
"id": "0xa9b5da22440dedd72535ec0525582ca0b63be5e1",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 25.12450662129133,
"queryFeeEffectiveCut": 25.12450662129133,
"stakedTokens": 148861.17247168845,
"delegatedTokens": 200813.53220898507,
"allocatedTokens": 349500
},
{
"id": "0xaa988dcb035518bc0e20082a3148a5d3dfd1776d",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.965939611157598,
"queryFeeEffectiveCut": 11.965939611157598,
"stakedTokens": 8484583.345381359,
"delegatedTokens": 31006266.701924823,
"allocatedTokens": 39741622
},
{
"id": "0xaddd3e23599d2b7267067afbcd18830aefca640a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.702221057961939,
"queryFeeEffectiveCut": 11.702221057961939,
"stakedTokens": 538865.5848910016,
"delegatedTokens": 1395481.1870795975,
"allocatedTokens": 1931469
},
{
"id": "0xae9bfdf9eeec808f4f3f6f455cb1968445cc6f2f",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 83.47558937831856,
"queryFeeEffectiveCut": 80.72152094137167,
"stakedTokens": 3141036.880249953,
"delegatedTokens": 8330906.656078785,
"allocatedTokens": 11440830.000000002
},
{
"id": "0xafaf2b5e2bb6ee52d257d3eafbecdc33d73a58e4",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0xb4b4570df6f7fe320f10fdfb702dba7e35244550",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.745118179169156,
"queryFeeEffectiveCut": 65.10534310392406,
"stakedTokens": 1063781.3722183183,
"delegatedTokens": 7142032.386158252,
"allocatedTokens": 8205803.8
},
{
"id": "0xb54c7c9fa1a51300e6054b70ae9952c1fb2800b4",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 9.688633498074815,
"queryFeeEffectiveCut": 9.688633498074815,
"stakedTokens": 904900.2594061231,
"delegatedTokens": 12043607.63503881,
"allocatedTokens": 12804050
},
{
"id": "0xb8950c47e8b9e539601cb47a167de8bf4cb1289e",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 120869.91298318536,
"delegatedTokens": 179.09126048768414,
"allocatedTokens": 0
},
{
"id": "0xb8ca929e2bd96548cabcabc56cfc9a5147cef0ff",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.726434177977136,
"queryFeeEffectiveCut": 10.726434177977136,
"stakedTokens": 1500000,
"delegatedTokens": 2894311.762368779,
"allocatedTokens": 4342887
},
{
"id": "0xbb31364ed8192494371d94a6c1cab02351ebfcbb",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 15.047206392125947,
"queryFeeEffectiveCut": 100,
"stakedTokens": 199999.99999999997,
"delegatedTokens": 610897.0593396083,
"allocatedTokens": 810921
},
{
"id": "0xbdfb5ee5a2abf4fc7bb1bd1221067aef7f9de491",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 99999.99999999999,
"delegatedTokens": 2738.0684923854396,
"allocatedTokens": 560
},
{
"id": "0xc224a84b53b191a93a7f136c3a8abedf1e770483",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0xc55c63563efb36f7cc65ac3060c52987c6694b37",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 8.423046007195833,
"queryFeeEffectiveCut": 8.423046007195833,
"stakedTokens": 8968786.774508642,
"delegatedTokens": 81687660.28002416,
"allocatedTokens": 90241574.8
},
{
"id": "0xc7c3c9586a10e4b40373f2f2f223b3a3c04cc6c6",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 2.4073746620028675,
"queryFeeEffectiveCut": 2.4073746620028675,
"stakedTokens": 295314.8298632983,
"delegatedTokens": 39447.28750104739,
"allocatedTokens": 320398
},
{
"id": "0xc9014686f6336ad558b539565d5dff840b339082",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 2434300.054641867,
"delegatedTokens": 33931228.12827119,
"allocatedTokens": 34815000
},
{
"id": "0xcba919cf1ee9c537545975d9968718a09d20f071",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 500000,
"delegatedTokens": 4539344.603130287,
"allocatedTokens": 5039344
},
{
"id": "0xcfd990b8297e7ff46f8acef32bec516f4395ac6b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 49.75,
"allocatedTokens": 0
},
{
"id": "0xd25b44bad8812d1c028e0db075f0466285424c37",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 81.68196405648267,
"allocatedTokens": 0
},
{
"id": "0xd343449961f5a4f0b2b7fbcc4e8cfff86f57bfb1",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0xd6a51a6cd8abc896f560e2bc9e1bdfc5ef4fa45b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 335935.4716595164,
"delegatedTokens": 353.3027829893684,
"allocatedTokens": 336288
},
{
"id": "0xda20dde459c8d918f81566995d899a046d4d8503",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 5.527269733012741,
"queryFeeEffectiveCut": 5.527269733012741,
"stakedTokens": 292077.16814167675,
"delegatedTokens": 425140.64643779537,
"allocatedTokens": 716000
},
{
"id": "0xdc7daef4d0751a9f6ec28b06d6d9475b13eb0918",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.837659660631305,
"queryFeeEffectiveCut": 10.837659660631305,
"stakedTokens": 1533120.3480954964,
"delegatedTokens": 5993255.421980701,
"allocatedTokens": 7521398.95
},
{
"id": "0xdeb712db301285ed483ef9e02dd08a1980f273f1",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 15.069613967821697,
"queryFeeEffectiveCut": 15.069613967821697,
"stakedTokens": 1567132.7107281876,
"delegatedTokens": 1609381.844139735,
"allocatedTokens": 3184054
},
{
"id": "0xdec965f0604125be05cd8a136c85d02ef344d61a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.525892169235057,
"queryFeeEffectiveCut": 10.525892169235057,
"stakedTokens": 2341107.8575401837,
"delegatedTokens": 11741655.241416655,
"allocatedTokens": 14256372
},
{
"id": "0xdecba5154aab37ae5e381a19f804f3af4d1bcbb5",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 9.337905992262288,
"queryFeeEffectiveCut": 89.02130128266678,
"stakedTokens": 3023242.7397265215,
"delegatedTokens": 30890433.24757109,
"allocatedTokens": 33913644
},
{
"id": "0xe0ceec6daa59cc951f3f71d6fc4221e55ef6c386",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.31748056750494,
"queryFeeEffectiveCut": 10.31748056750494,
"stakedTokens": 3337813.5548946117,
"delegatedTokens": 27578058.195826415,
"allocatedTokens": 30917994
},
{
"id": "0xe104763679499bcd9c788eef027315a2f1bd085a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0xe13840a2e92e0cb17a246609b432d0fa2e418774",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.399170918517516,
"queryFeeEffectiveCut": 84.12739963126971,
"stakedTokens": 9766122.59282024,
"delegatedTokens": 16629979.871986022,
"allocatedTokens": 26396102.45
},
{
"id": "0xe2571c87f1433ea06be389e427af2a17bfd37fc0",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 3113.0482102165533,
"allocatedTokens": 0
},
{
"id": "0xe338631b024afcc15aad7c987cda6aa09bd50ad0",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 102045.85492128112,
"delegatedTokens": 132.3525827797277,
"allocatedTokens": 0
},
{
"id": "0xe4012a6392527d6e24df2b90b56c3fdb3f5598be",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 2.985,
"allocatedTokens": 0
},
{
"id": "0xe462ddeac1af0e7521acc0c29964d2db627a59c2",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 0,
"allocatedTokens": 0
},
{
"id": "0xe63e935fba572784d5aa40715e372e7948bbdb12",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 9.576925671237028,
"queryFeeEffectiveCut": 9.576925671237028,
"stakedTokens": 3632978.9483810966,
"delegatedTokens": 56942463.23981928,
"allocatedTokens": 60575442.18820038
},
{
"id": "0xe6de2325ef1aac1f058fae59d3c38a472f569846",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 14999004,
"delegatedTokens": 5.97,
"allocatedTokens": 14999009
},
{
"id": "0xe91273727203bcc827521fc8b0c762d435c3c5d0",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 126083308.34412305,
"delegatedTokens": 281.82871164166625,
"allocatedTokens": 126083590
},
{
"id": "0xe9e284277648fcdb09b8efc1832c73c09b5ecf59",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 15.203712040727781,
"queryFeeEffectiveCut": 15.203712040727781,
"stakedTokens": 5120105.611710288,
"delegatedTokens": 73160350.25727102,
"allocatedTokens": 78280430
},
{
"id": "0xeccdf8231326a9c5aad32df76a633aaa4c49b104",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 20.846989156678127,
"queryFeeEffectiveCut": 57.37914800744207,
"stakedTokens": 147143.86111633785,
"delegatedTokens": 675782.0705743979,
"allocatedTokens": 822800
},
{
"id": "0xedca8740873152ff30a2696add66d1ab41882beb",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 10.018024985317254,
"queryFeeEffectiveCut": 100,
"stakedTokens": 2178593.5410573995,
"delegatedTokens": 30417300.10841968,
"allocatedTokens": 32500458
},
{
"id": "0xeeeee689aa442c607105f29f06d00d2f748776b2",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 1350526.5239538834,
"delegatedTokens": 1275643.6832333535,
"allocatedTokens": 2626139.9999999995
},
{
"id": "0xf00f7157fa8fd0420b87956d46058a16b2f23adc",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 11.943691617223655,
"queryFeeEffectiveCut": 11.943691617223655,
"stakedTokens": 1811330.4812465534,
"delegatedTokens": 3408510.654067879,
"allocatedTokens": 5172121
},
{
"id": "0xf03e9a7e40f09772c3c368b9de14c6d7370717b9",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 345903.44365374424,
"delegatedTokens": 332.33,
"allocatedTokens": 335000
},
{
"id": "0xf0e33495afe697dbe32168bd0743ba32ebb978a3",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 5.084753232329383,
"queryFeeEffectiveCut": 5.084753232329383,
"stakedTokens": 161774.56023488456,
"delegatedTokens": 128404.04127183197,
"allocatedTokens": 290147
},
{
"id": "0xf435dee64819590c1a3f5913822e1c04afebe695",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 101649.90385690115,
"delegatedTokens": 67416.6128520901,
"allocatedTokens": 0
},
{
"id": "0xf57dcd881ebd1d81df99194abdfa90f9e0e92f11",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 67.94851091111006,
"queryFeeEffectiveCut": 67.94851091111006,
"stakedTokens": 3918763.608132269,
"delegatedTokens": 7446420.578156102,
"allocatedTokens": 11365184
},
{
"id": "0xf61dafa923a6cbcee6b73683c3f3ff099b713436",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 0,
"queryFeeEffectiveCut": 0,
"stakedTokens": 0,
"delegatedTokens": 2502.210043788703,
"allocatedTokens": 0
},
{
"id": "0xf671c6b83f44ead14ca1c5f4a629f1b9b18c8f29",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": -3.932812873887149,
"queryFeeEffectiveCut": -3.932812873887149,
"stakedTokens": 101364.70083947155,
"delegatedTokens": 262758.8474061486,
"allocatedTokens": 354123
},
{
"id": "0xf6a9bad58e74b5165dc31ef24be4377b192f274a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 1014013.4965253788,
"delegatedTokens": 433.97056026,
"allocatedTokens": 1000000
},
{
"id": "0xf7793bf9561c32ffbac603ce572fa55643f9cf72",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 2263288.719710924,
"delegatedTokens": 4839979.525576983,
"allocatedTokens": 7103400
},
{
"id": "0xf9123292b4d958c53aaad8c5df0138ee0e62944b",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 12.06803041326269,
"queryFeeEffectiveCut": 12.06803041326269,
"stakedTokens": 15265907.241798267,
"delegatedTokens": 135021358.99486375,
"allocatedTokens": 147092993.5
},
{
"id": "0xf92f430dd8567b0d466358c79594ab58d919a6d4",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 14.986586605819927,
"queryFeeEffectiveCut": 85.12265265601849,
"stakedTokens": 4829346.773723036,
"delegatedTokens": 77062813.60047884,
"allocatedTokens": 81835836
},
{
"id": "0xfb168335f5a3868a03696904ed38fa95fd167c0e",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 100,
"queryFeeEffectiveCut": 100,
"stakedTokens": 104866.05109224605,
"delegatedTokens": 2102.639520065684,
"allocatedTokens": 104402
},
{
"id": "0xfc842f81490dcb37e82d416b2d28327dfb24ba9a",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 20.009595826558332,
"queryFeeEffectiveCut": 20.009595826558332,
"stakedTokens": 3031930.117329169,
"delegatedTokens": 27320140.972752992,
"allocatedTokens": 30348071
},
{
"id": "0xfeff9093f6b32d0e5cddba743b06a1fedb87c004",
"defaultDisplayName": null,
"indexingRewardEffectiveCut": 15.208068668409267,
"queryFeeEffectiveCut": 81.75363502991085,
"stakedTokens": 2675210.8223115657,
"delegatedTokens": 36488978.00460792,
"allocatedTokens": 39164544
}
]
Parameter | Type | Description |
---|---|---|
id | string | Address of the Indexer. |
defaultDisplayName | string | ENS display name of the Indexer. |
indexingRewardEffectiveCut | string | Indexer effective reward cut (%). |
queryFeeEffectiveCut | string | Indexer query fee effective cut (%). |
stakedTokens | string | Indexer self-stake GRT. |
delegatedTokens | string | Delegated GRT to indexer. |
allocatedTokens | string | Indexer total GRT staked to allocations. |
IPFS
Sample Data
{
"subgraph_id": "0x4a008334f8e7ea21be223d15462084f51abcc0e6625f61de806b8456e67e603e"
}
Converts subgraph ID to IPFS hash.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/graph/IPFS/0x4a008334f8e7ea21be223d15462084f51abcc0e6625f61de806b8456e67e603e
/graph/IPFS/[subgraph_id]
Parameter | Type | Description |
---|---|---|
subgraph_id | string | Subgraph ID to convert to a IPFS hash. |
Response Parameters
Sample 200 Response
{
"ipfs_hash":"QmTKXLEdMD6Vq7Nwxo8XAfnHpG6H1TzL1AGwiqLpoae3Pb"
}
Parameter | Type | Description |
---|---|---|
ipfs_hash | string | IPFS hash of subgraph ID. |
Network
View The Graph network information.
Request Parameters
Sample Request
curl -X GET https://api.maplenodes.com/graph/arbitrum/network/
/graph/arbitrum/network/
This call does not take parameters.
Response
Sample 200 Response
{
"total_supply": 3046257704.25,
"indexer_stake": 695994748.73,
"delegated_stake": 1786165538.62,
"total_tokens_staked": 2482160287.35,
"allocated_stake": 2361856423.64
}
Parameter | Type | Description |
---|---|---|
total_supply | int | The Graph token supply. |
indexer_stake | int | Total amount of Indexers GRT staked. |
delegated_stake | int | Total amount of Delegators GRT staked. |
total_tokens_staked | int | Total network GRT staked. |
allocated_stake | int | Total GRT currently in allocations. |
Crypto Information
Call | Description |
---|---|
CCMultiPrice | Returns the current price of any given crypto currency ticker(s) in the desired currency(s). |
CCSinglePrice | Returns the current price of any given cryptocurrency ticker in the desired currency(s). |
CCTopExchangesVolumeByPair | Returns the top list exchanges based on volume by pair. |
CCTopListMarketCap | Returns the top list by market cap. |
CCTopListVolume24H | Returns the top list of 24 hour volume. |
CCTopListVolumeByPair | Returns the top list of volume by pair. |
CCMultiPrice
Sample Data
{
"tickers": "BTC,DASH",
"currencies": "USD,CAD"
}
Returns the current price of any given crypto currency ticker(s) in the desired currency(s). Pricing information provided by Crypto Compare.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["BTC,DASH","USD,CAD"]' https://api.maplenodes.com/v1/CCMultiPrice
CCMultiPrice [tickers] [currencies]
Parameter | Type | Description |
---|---|---|
tickers | string | Crypto currency tickers joined by commas. |
currencies | string | World currencies joined by commas. |
Response Parameters
Sample 200 Response
{
"BTC": {
"USD": 8853.22,
"CAD": 12599.3
},
"DASH": {
"USD": 79.71,
"CAD": 112.17
}
}
Parameter | Type | Description |
---|---|---|
crypto_ticker | string | Crypto currency ticker. |
currencies | int | Current pricing of crypto ticker in desired currency. |
CCSinglePrice
Sample Data
{
"ticker": "BTC",
"currencies": "USD,CAD"
}
Returns the current price of any given cryptocurrency ticker in the desired currency(s). Pricing information provided by Crypto Compare.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["BTC","USD,CAD"]' https://api.maplenodes.com/v1/CCSinglePrice
CCSinglePrice [ticker] [currencies]
Parameter | Type | Description |
---|---|---|
ticker | string | Crypto currency ticker. |
currencies | string | World currencies joined by commas. |
Response Parameters
Sample 200 Response
{
"USD": 8857.56,
"CAD": 12599.3
}
Parameter | Type | Description |
---|---|---|
currencies | int | Current pricing of crypto ticker in desired currencies. |
CCTopExchangesVolumeByPair
Sample Data
{
"ticker": "BTC",
"currency": "USD"
}
Returns the top list exchanges based on volume by pair. Pricing information provided by Crypto Compare.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["BTC","USD"]' https://api.maplenodes.com/v1/CCTopExchangesVolumeByPair
CCTopExchangesVolumeByPair [ticker] [currency]
Parameter | Type | Description |
---|---|---|
ticker | string | Crypto currency ticker. |
currency | string | World currency. |
Response Parameters
Sample 200 Response
{
"Response": "Success",
"Data": [
{
"exchange": "Coinsbit",
"fromSymbol": "BTC",
"toSymbol": "USD",
"volume24h": 69323.89512443,
"volume24hTo": 604919028.448395
},
{
"exchange": "P2PB2B",
"fromSymbol": "BTC",
"toSymbol": "USD",
"volume24h": 61164.896717,
"volume24hTo": 537775810.031167
},
{
"exchange": "bitasset",
"fromSymbol": "BTC",
"toSymbol": "USD",
"volume24h": 18223.9468,
"volume24hTo": 161003439.435717
},
{
"exchange": "Coinbase",
"fromSymbol": "BTC",
"toSymbol": "USD",
"volume24h": 15626.50845041,
"volume24hTo": 136869331.37539
},
{
"exchange": "lmax",
"fromSymbol": "BTC",
"toSymbol": "USD",
"volume24h": 9524.03,
"volume24hTo": 83341039.57487
}
],
"RateLimit": {},
"HasWarning": false,
"Type": 100
}
Parameter | Type | Description |
---|---|---|
Response | string | Status of call. |
Data | array | Array of exchanges and corresponding data. |
exchange | string | Crypto exchange. |
fromSymbol | string | From asset ticker. |
toSymbol | string | To asset ticker. |
volume24h | int | 24 hour volume. |
volume24hTo | int | 24 hour volume To. |
RateLimit | string | Rate limit. |
HasWarning | bool | If no warnings false , otherwise true . |
Type | int | Type. |
CCTopListMarketCap
Sample Data
{
"limit": "10",
"currency": "USD"
}
Returns the top list by market cap. Pricing information provided by Crypto Compare.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["10","USD"]' https://api.maplenodes.com/v1/CCTopListMarketCap
CCTopListMarketCap [limit] [currency]
Parameter | Type | Description |
---|---|---|
limit | int | Number of assets to return in toplist (10-100) |
currency | string | World currency. |
Response Parameters
Sample 200 Response
{
"Message": "Success",
"Type": 100,
"SponsoredData": [],
"Data": [
{
"CoinInfo": {
"Id": "1182",
"Name": "BTC",
"FullName": "Bitcoin",
"Internal": "BTC",
"ImageUrl": "/media/19633/btc.png",
"Url": "/coins/btc/overview",
"Algorithm": "SHA-256",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "B+",
"TechnologyAdoptionRating": "A",
"MarketPerformanceRating": "D"
}
},
"NetHashesPerSecond": 114238226202.791,
"BlockNumber": 628908,
"BlockTime": 600,
"BlockReward": 12.5,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "BTC",
"TOSYMBOL": "USD",
"FLAGS": "2049",
"PRICE": 8890.31,
"LASTUPDATE": 1588608036,
"MEDIAN": 8874.61,
"LASTVOLUME": 0.005,
"LASTVOLUMETO": 44.421499999999995,
"LASTTRADEID": "442046250",
"VOLUMEDAY": 45113.805399809666,
"VOLUMEDAYTO": 393651326.3958163,
"VOLUME24HOUR": 57064.9968953409,
"VOLUME24HOURTO": 499651320.06807214,
"OPENDAY": 8907.07,
"HIGHDAY": 8946.95,
"LOWDAY": 8537.49,
"OPEN24HOUR": 8858.96,
"HIGH24HOUR": 8967.86,
"LOW24HOUR": 8512.93,
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": 407.7042508799994,
"VOLUMEHOURTO": 3618292.537797033,
"OPENHOUR": 8854.23,
"HIGHHOUR": 8890.31,
"LOWHOUR": 8854.2,
"TOPTIERVOLUME24HOUR": 54791.59841103089,
"TOPTIERVOLUME24HOURTO": 479711616.8877831,
"CHANGE24HOUR": 31.350000000000364,
"CHANGEPCT24HOUR": 0.35387901062879124,
"CHANGEDAY": -16.76000000000022,
"CHANGEPCTDAY": -0.18816513174366226,
"CHANGEHOUR": 36.07999999999993,
"CHANGEPCTHOUR": 0.40748884996210766,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 18361300,
"MKTCAP": 163237649003,
"TOTALVOLUME24H": 645096.4287276813,
"TOTALVOLUME24HTO": 5727433038.801447,
"TOTALTOPTIERVOLUME24H": 413668.69280135486,
"TOTALTOPTIERVOLUME24HTO": 3670240237.917024,
"IMAGEURL": "/media/19633/btc.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "Ƀ",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 8,890.31",
"LASTUPDATE": "Just now",
"LASTVOLUME": "Ƀ 0.005000",
"LASTVOLUMETO": "$ 44.42",
"LASTTRADEID": "442046250",
"VOLUMEDAY": "Ƀ 45,113.8",
"VOLUMEDAYTO": "$ 393,651,326.4",
"VOLUME24HOUR": "Ƀ 57,065.0",
"VOLUME24HOURTO": "$ 499,651,320.1",
"OPENDAY": "$ 8,907.07",
"HIGHDAY": "$ 8,946.95",
"LOWDAY": "$ 8,537.49",
"OPEN24HOUR": "$ 8,858.96",
"HIGH24HOUR": "$ 8,967.86",
"LOW24HOUR": "$ 8,512.93",
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": "Ƀ 407.70",
"VOLUMEHOURTO": "$ 3,618,292.5",
"OPENHOUR": "$ 8,854.23",
"HIGHHOUR": "$ 8,890.31",
"LOWHOUR": "$ 8,854.20",
"TOPTIERVOLUME24HOUR": "Ƀ 54,791.6",
"TOPTIERVOLUME24HOURTO": "$ 479,711,616.9",
"CHANGE24HOUR": "$ 31.35",
"CHANGEPCT24HOUR": "0.35",
"CHANGEDAY": "$ -16.76",
"CHANGEPCTDAY": "-0.19",
"CHANGEHOUR": "$ 36.08",
"CHANGEPCTHOUR": "0.41",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "Ƀ 18,361,300.0",
"MKTCAP": "$ 163.24 B",
"TOTALVOLUME24H": "Ƀ 645.10 K",
"TOTALVOLUME24HTO": "$ 5.73 B",
"TOTALTOPTIERVOLUME24H": "Ƀ 413.67 K",
"TOTALTOPTIERVOLUME24HTO": "$ 3.67 B",
"IMAGEURL": "/media/19633/btc.png"
}
}
},
{
"CoinInfo": {
"Id": "7605",
"Name": "ETH",
"FullName": "Ethereum",
"Internal": "ETH",
"ImageUrl": "/media/20646/eth_logo.png",
"Url": "/coins/eth/overview",
"Algorithm": "Ethash",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "B+",
"TechnologyAdoptionRating": "A",
"MarketPerformanceRating": "D"
}
},
"NetHashesPerSecond": 179649712318722,
"BlockNumber": 10000444,
"BlockTime": 15,
"BlockReward": 2,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "ETH",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 206.79,
"LASTUPDATE": 1588608035,
"MEDIAN": 206.4,
"LASTVOLUME": 0.005402,
"LASTVOLUMETO": 1.1160531999999999,
"LASTTRADEID": "442045389",
"VOLUMEDAY": 468509.28080370574,
"VOLUMEDAYTO": 94706234.8684289,
"VOLUME24HOUR": 566783.9250802201,
"VOLUME24HOURTO": 115244919.84331566,
"OPENDAY": 210.06,
"HIGHDAY": 210.81,
"LOWDAY": 195.3,
"OPEN24HOUR": 208.98,
"HIGH24HOUR": 211.75,
"LOW24HOUR": 195.09,
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": 1148.22746665,
"VOLUMEHOURTO": 237197.15675253866,
"OPENHOUR": 206.23,
"HIGHHOUR": 206.79,
"LOWHOUR": 206.23,
"TOPTIERVOLUME24HOUR": 553206.20998776,
"TOPTIERVOLUME24HOURTO": 112488631.35511072,
"CHANGE24HOUR": -2.1899999999999977,
"CHANGEPCT24HOUR": -1.0479471719781788,
"CHANGEDAY": -3.2700000000000102,
"CHANGEPCTDAY": -1.556698086261073,
"CHANGEHOUR": 0.5600000000000023,
"CHANGEPCTHOUR": 0.2715414828104555,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 110788681.499,
"MKTCAP": 22909991447.178207,
"TOTALVOLUME24H": 11644040.47122921,
"TOTALVOLUME24HTO": 2405910801.0214653,
"TOTALTOPTIERVOLUME24H": 6091716.388962934,
"TOTALTOPTIERVOLUME24HTO": 1257797151.2653868,
"IMAGEURL": "/media/20646/eth_logo.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "Ξ",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 206.79",
"LASTUPDATE": "Just now",
"LASTVOLUME": "Ξ 0.005402",
"LASTVOLUMETO": "$ 1.12",
"LASTTRADEID": "442045389",
"VOLUMEDAY": "Ξ 468,509.3",
"VOLUMEDAYTO": "$ 94,706,234.9",
"VOLUME24HOUR": "Ξ 566,783.9",
"VOLUME24HOURTO": "$ 115,244,919.8",
"OPENDAY": "$ 210.06",
"HIGHDAY": "$ 210.81",
"LOWDAY": "$ 195.30",
"OPEN24HOUR": "$ 208.98",
"HIGH24HOUR": "$ 211.75",
"LOW24HOUR": "$ 195.09",
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": "Ξ 1,148.23",
"VOLUMEHOURTO": "$ 237,197.2",
"OPENHOUR": "$ 206.23",
"HIGHHOUR": "$ 206.79",
"LOWHOUR": "$ 206.23",
"TOPTIERVOLUME24HOUR": "Ξ 553,206.2",
"TOPTIERVOLUME24HOURTO": "$ 112,488,631.4",
"CHANGE24HOUR": "$ -2.19",
"CHANGEPCT24HOUR": "-1.05",
"CHANGEDAY": "$ -3.27",
"CHANGEPCTDAY": "-1.56",
"CHANGEHOUR": "$ 0.56",
"CHANGEPCTHOUR": "0.27",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "Ξ 110,788,681.5",
"MKTCAP": "$ 22.91 B",
"TOTALVOLUME24H": "Ξ 11.64 M",
"TOTALVOLUME24HTO": "$ 2.41 B",
"TOTALTOPTIERVOLUME24H": "Ξ 6.09 M",
"TOTALTOPTIERVOLUME24HTO": "$ 1.26 B",
"IMAGEURL": "/media/20646/eth_logo.png"
}
}
},
{
"CoinInfo": {
"Id": "5031",
"Name": "XRP",
"FullName": "XRP",
"Internal": "XRP",
"ImageUrl": "/media/34477776/xrp.png",
"Url": "/coins/xrp/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "B-",
"TechnologyAdoptionRating": "B+",
"MarketPerformanceRating": "D-"
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 4,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "XRP",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 0.2191,
"LASTUPDATE": 1588608036,
"MEDIAN": 0.21868,
"LASTVOLUME": 960.60564602,
"LASTVOLUMETO": 210.0652426716536,
"LASTTRADEID": "442042653",
"VOLUMEDAY": 153186174.47837344,
"VOLUMEDAYTO": 32694611.765551638,
"VOLUME24HOUR": 188127155.31923506,
"VOLUME24HOURTO": 40326306.276131034,
"OPENDAY": 0.2194,
"HIGHDAY": 0.2207,
"LOWDAY": 0.2074,
"OPEN24HOUR": 0.2189,
"HIGH24HOUR": 0.2216,
"LOW24HOUR": 0.2074,
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": 530380.1492834102,
"VOLUMEHOURTO": 116114.27957505982,
"OPENHOUR": 0.2186,
"HIGHHOUR": 0.2191,
"LOWHOUR": 0.2186,
"TOPTIERVOLUME24HOUR": 188118357.02014032,
"TOPTIERVOLUME24HOURTO": 40324447.98795003,
"CHANGE24HOUR": 0.00019999999999997797,
"CHANGEPCT24HOUR": 0.0913659205116391,
"CHANGEDAY": -0.00030000000000002247,
"CHANGEPCTDAY": -0.13673655423884343,
"CHANGEHOUR": 0.0005000000000000004,
"CHANGEPCTHOUR": 0.22872827081427288,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 99991850794,
"MKTCAP": 21908214508.9654,
"TOTALVOLUME24H": 1664558551.1767914,
"TOTALVOLUME24HTO": 363812425.10852164,
"TOTALTOPTIERVOLUME24H": 1234616765.876044,
"TOTALTOPTIERVOLUME24HTO": 269612249.3682785,
"IMAGEURL": "/media/34477776/xrp.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "XRP",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.2191",
"LASTUPDATE": "Just now",
"LASTVOLUME": "XRP 960.61",
"LASTVOLUMETO": "$ 210.07",
"LASTTRADEID": "442042653",
"VOLUMEDAY": "XRP 153,186,174.5",
"VOLUMEDAYTO": "$ 32,694,611.8",
"VOLUME24HOUR": "XRP 188,127,155.3",
"VOLUME24HOURTO": "$ 40,326,306.3",
"OPENDAY": "$ 0.2194",
"HIGHDAY": "$ 0.2207",
"LOWDAY": "$ 0.2074",
"OPEN24HOUR": "$ 0.2189",
"HIGH24HOUR": "$ 0.2216",
"LOW24HOUR": "$ 0.2074",
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": "XRP 530,380.1",
"VOLUMEHOURTO": "$ 116,114.3",
"OPENHOUR": "$ 0.2186",
"HIGHHOUR": "$ 0.2191",
"LOWHOUR": "$ 0.2186",
"TOPTIERVOLUME24HOUR": "XRP 188,118,357.0",
"TOPTIERVOLUME24HOURTO": "$ 40,324,448.0",
"CHANGE24HOUR": "$ 0.00020",
"CHANGEPCT24HOUR": "0.09",
"CHANGEDAY": "$ -0.00030",
"CHANGEPCTDAY": "-0.14",
"CHANGEHOUR": "$ 0.00050",
"CHANGEPCTHOUR": "0.23",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "XRP 99,991,850,794.0",
"MKTCAP": "$ 21.91 B",
"TOTALVOLUME24H": "XRP 1.66 B",
"TOTALVOLUME24HTO": "$ 363.81 M",
"TOTALTOPTIERVOLUME24H": "XRP 1.23 B",
"TOTALTOPTIERVOLUME24HTO": "$ 269.61 M",
"IMAGEURL": "/media/34477776/xrp.png"
}
}
},
{
"CoinInfo": {
"Id": "932313",
"Name": "GAPS",
"FullName": "Gaps Chain",
"Internal": "GAPS",
"ImageUrl": "/media/35651651/gaps.png",
"Url": "/coins/gaps/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "",
"TechnologyAdoptionRating": "",
"MarketPerformanceRating": ""
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "GAPS",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 3.2321277,
"LASTUPDATE": 1588608035,
"MEDIAN": 3.2327170515,
"LASTVOLUME": 5.8128,
"LASTVOLUMETO": 18.78771189456,
"LASTTRADEID": "15886079440001",
"VOLUMEDAY": 1275545.1058000005,
"VOLUMEDAYTO": 4122724.669055613,
"VOLUME24HOUR": 1649248.084,
"VOLUME24HOURTO": 5330580.416468328,
"OPENDAY": 3.1039179,
"HIGHDAY": 3.4203066,
"LOWDAY": 3.10185,
"OPEN24HOUR": 3.2176524,
"HIGH24HOUR": 3.4203066,
"LOW24HOUR": 3.0997821,
"LASTMARKET": "Bitforex",
"VOLUMEHOUR": 0,
"VOLUMEHOURTO": 0,
"OPENHOUR": 3.2321277,
"HIGHHOUR": 3.2321277,
"LOWHOUR": 3.2321277,
"TOPTIERVOLUME24HOUR": 0,
"TOPTIERVOLUME24HOURTO": 0,
"CHANGE24HOUR": 0.014475299999999969,
"CHANGEPCT24HOUR": 0.4498714652956289,
"CHANGEDAY": 0.12820980000000004,
"CHANGEPCTDAY": 4.130579613590941,
"CHANGEHOUR": 0,
"CHANGEPCTHOUR": 0,
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "ETH",
"SUPPLY": 2000000000,
"MKTCAP": 6464255400,
"TOTALVOLUME24H": 1813480.218600094,
"TOTALVOLUME24HTO": 5861399.64793942,
"TOTALTOPTIERVOLUME24H": 0,
"TOTALTOPTIERVOLUME24HTO": 0,
"IMAGEURL": "/media/35651651/gaps.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "GAPS",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 3.23",
"LASTUPDATE": "Just now",
"LASTVOLUME": "GAPS 5.81",
"LASTVOLUMETO": "$ 18.79",
"LASTTRADEID": "15886079440001",
"VOLUMEDAY": "GAPS 1,275,545.1",
"VOLUMEDAYTO": "$ 4,122,724.7",
"VOLUME24HOUR": "GAPS 1,649,248.1",
"VOLUME24HOURTO": "$ 5,330,580.4",
"OPENDAY": "$ 3.10",
"HIGHDAY": "$ 3.42",
"LOWDAY": "$ 3.10",
"OPEN24HOUR": "$ 3.22",
"HIGH24HOUR": "$ 3.42",
"LOW24HOUR": "$ 3.10",
"LASTMARKET": "Bitforex",
"VOLUMEHOUR": "GAPS 0",
"VOLUMEHOURTO": "$ 0",
"OPENHOUR": "$ 3.23",
"HIGHHOUR": "$ 3.23",
"LOWHOUR": "$ 3.23",
"TOPTIERVOLUME24HOUR": "GAPS 0",
"TOPTIERVOLUME24HOURTO": "$ 0",
"CHANGE24HOUR": "$ 0.014",
"CHANGEPCT24HOUR": "0.45",
"CHANGEDAY": "$ 0.13",
"CHANGEPCTDAY": "4.13",
"CHANGEHOUR": "$ 0.0",
"CHANGEPCTHOUR": "0.00",
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "ETH",
"SUPPLY": "GAPS 2,000,000,000.0",
"MKTCAP": "$ 6.46 B",
"TOTALVOLUME24H": "GAPS 1.81 M",
"TOTALVOLUME24HTO": "$ 5.86 M",
"TOTALTOPTIERVOLUME24H": "GAPS 0",
"TOTALTOPTIERVOLUME24HTO": "$ 0",
"IMAGEURL": "/media/35651651/gaps.png"
}
}
},
{
"CoinInfo": {
"Id": "929418",
"Name": "CRO",
"FullName": "Crypto.com Chain Token",
"Internal": "CRO",
"ImageUrl": "/media/34478435/mco.png",
"Url": "/coins/cro/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "",
"TechnologyAdoptionRating": "",
"MarketPerformanceRating": ""
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "CRO",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 0.06072081729999999,
"LASTUPDATE": 1588608036,
"MEDIAN": 0.0608097204,
"LASTVOLUME": 200,
"LASTVOLUMETO": 12.14416346,
"LASTTRADEID": "1.0006283043084477e+22",
"VOLUMEDAY": 30513414.811183292,
"VOLUMEDAYTO": 1852799.485948974,
"VOLUME24HOUR": 43862303.02732922,
"VOLUME24HOURTO": 2663354.888479694,
"OPENDAY": 0.06000959249999999,
"HIGHDAY": 0.06160984829999999,
"LOWDAY": 0.0596539801,
"OPEN24HOUR": 0.0600984956,
"HIGH24HOUR": 0.0618765576,
"LOW24HOUR": 0.059565077,
"LASTMARKET": "HuobiPro",
"VOLUMEHOUR": 7264.02,
"VOLUMEHOURTO": 441.077231283546,
"OPENHOUR": 0.06072081729999999,
"HIGHHOUR": 0.06072081729999999,
"LOWHOUR": 0.06072081729999999,
"TOPTIERVOLUME24HOUR": 36812885.18314728,
"TOPTIERVOLUME24HOURTO": 2235308.475491763,
"CHANGE24HOUR": 0.0006223216999999906,
"CHANGEPCT24HOUR": 1.0355029585798659,
"CHANGEDAY": 0.0007112248000000002,
"CHANGEPCTDAY": 1.1851851851851856,
"CHANGEHOUR": 0,
"CHANGEPCTHOUR": 0,
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "BTC",
"SUPPLY": 100000000000,
"MKTCAP": 6072081729.999999,
"TOTALVOLUME24H": 78564084.97568677,
"TOTALVOLUME24HTO": 4770475.45015035,
"TOTALTOPTIERVOLUME24H": 62727518.86253818,
"TOTALTOPTIERVOLUME24HTO": 3808866.2125344845,
"IMAGEURL": "/media/34478435/mco.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "CRO",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.06072",
"LASTUPDATE": "Just now",
"LASTVOLUME": "CRO 200.00",
"LASTVOLUMETO": "$ 12.14",
"LASTTRADEID": "1.0006283043084477e+22",
"VOLUMEDAY": "CRO 30,513,414.8",
"VOLUMEDAYTO": "$ 1,852,799.5",
"VOLUME24HOUR": "CRO 43,862,303.0",
"VOLUME24HOURTO": "$ 2,663,354.9",
"OPENDAY": "$ 0.06001",
"HIGHDAY": "$ 0.06161",
"LOWDAY": "$ 0.05965",
"OPEN24HOUR": "$ 0.06010",
"HIGH24HOUR": "$ 0.06188",
"LOW24HOUR": "$ 0.05957",
"LASTMARKET": "HuobiPro",
"VOLUMEHOUR": "CRO 7,264.02",
"VOLUMEHOURTO": "$ 441.08",
"OPENHOUR": "$ 0.06072",
"HIGHHOUR": "$ 0.06072",
"LOWHOUR": "$ 0.06072",
"TOPTIERVOLUME24HOUR": "CRO 36,812,885.2",
"TOPTIERVOLUME24HOURTO": "$ 2,235,308.5",
"CHANGE24HOUR": "$ 0.00062",
"CHANGEPCT24HOUR": "1.04",
"CHANGEDAY": "$ 0.00071",
"CHANGEPCTDAY": "1.19",
"CHANGEHOUR": "$ 0.0",
"CHANGEPCTHOUR": "0.00",
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "BTC",
"SUPPLY": "CRO 100,000,000,000.0",
"MKTCAP": "$ 6.07 B",
"TOTALVOLUME24H": "CRO 78.56 M",
"TOTALVOLUME24HTO": "$ 4.77 M",
"TOTALTOPTIERVOLUME24H": "CRO 62.73 M",
"TOTALTOPTIERVOLUME24HTO": "$ 3.81 M",
"IMAGEURL": "/media/34478435/mco.png"
}
}
},
{
"CoinInfo": {
"Id": "930952",
"Name": "HYN",
"FullName": "Hyperion",
"Internal": "HYN",
"ImageUrl": "/media/35650877/hyn.png",
"Url": "/coins/hyn/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "",
"TechnologyAdoptionRating": "",
"MarketPerformanceRating": ""
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "HYN",
"TOSYMBOL": "USD",
"FLAGS": "1026",
"PRICE": 0.6050675400000001,
"LASTUPDATE": 1588608035,
"MEDIAN": 0.6050799473999999,
"LASTVOLUME": 797.86,
"LASTVOLUMETO": 482.7591874644,
"LASTTRADEID": "15886080350001",
"VOLUMEDAY": 15030464.030900026,
"VOLUMEDAYTO": 9094445.896235164,
"VOLUME24HOUR": 17922884.3046,
"VOLUME24HOURTO": 10844555.51588893,
"OPENDAY": 0.37098126,
"HIGHDAY": 0.66152121,
"LOWDAY": 0.36953373,
"OPEN24HOUR": 0.37139484,
"HIGH24HOUR": 0.66152121,
"LOW24HOUR": 0.36849978,
"LASTMARKET": "Bibox",
"VOLUMEHOUR": 1798.1799999999998,
"VOLUMEHOURTO": 1088.0203490772,
"OPENHOUR": 0.6058946999999999,
"HIGHHOUR": 0.60630828,
"LOWHOUR": 0.6050675400000001,
"TOPTIERVOLUME24HOUR": 17922884.3046,
"TOPTIERVOLUME24HOURTO": 10844555.51588893,
"CHANGE24HOUR": 0.23367270000000007,
"CHANGEPCT24HOUR": 62.91759465478843,
"CHANGEDAY": 0.2340862800000001,
"CHANGEPCTDAY": 63.09921962095878,
"CHANGEHOUR": -0.0008271599999998269,
"CHANGEPCTHOUR": -0.1365187713310295,
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "ETH",
"SUPPLY": 10000000000,
"MKTCAP": 6050675400.000001,
"TOTALVOLUME24H": 48786590.8286023,
"TOTALVOLUME24HTO": 29519182.497648954,
"TOTALTOPTIERVOLUME24H": 48786590.8286023,
"TOTALTOPTIERVOLUME24HTO": 29519182.497648954,
"IMAGEURL": "/media/35650877/hyn.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "HYN",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.6051",
"LASTUPDATE": "Just now",
"LASTVOLUME": "HYN 797.86",
"LASTVOLUMETO": "$ 482.76",
"LASTTRADEID": "15886080350001",
"VOLUMEDAY": "HYN 15,030,464.0",
"VOLUMEDAYTO": "$ 9,094,445.9",
"VOLUME24HOUR": "HYN 17,922,884.3",
"VOLUME24HOURTO": "$ 10,844,555.5",
"OPENDAY": "$ 0.3710",
"HIGHDAY": "$ 0.6615",
"LOWDAY": "$ 0.3695",
"OPEN24HOUR": "$ 0.3714",
"HIGH24HOUR": "$ 0.6615",
"LOW24HOUR": "$ 0.3685",
"LASTMARKET": "Bibox",
"VOLUMEHOUR": "HYN 1,798.18",
"VOLUMEHOURTO": "$ 1,088.02",
"OPENHOUR": "$ 0.6059",
"HIGHHOUR": "$ 0.6063",
"LOWHOUR": "$ 0.6051",
"TOPTIERVOLUME24HOUR": "HYN 17,922,884.3",
"TOPTIERVOLUME24HOURTO": "$ 10,844,555.5",
"CHANGE24HOUR": "$ 0.23",
"CHANGEPCT24HOUR": "62.92",
"CHANGEDAY": "$ 0.23",
"CHANGEPCTDAY": "63.10",
"CHANGEHOUR": "$ -0.00083",
"CHANGEPCTHOUR": "-0.14",
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "ETH",
"SUPPLY": "HYN 10,000,000,000.0",
"MKTCAP": "$ 6.05 B",
"TOTALVOLUME24H": "HYN 48.79 M",
"TOTALVOLUME24HTO": "$ 29.52 M",
"TOTALTOPTIERVOLUME24H": "HYN 48.79 M",
"TOTALTOPTIERVOLUME24HTO": "$ 29.52 M",
"IMAGEURL": "/media/35650877/hyn.png"
}
}
},
{
"CoinInfo": {
"Id": "171986",
"Name": "USDT",
"FullName": "Tether",
"Internal": "USDT",
"ImageUrl": "/media/1383672/usdt.png",
"Url": "/coins/usdt/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "",
"TechnologyAdoptionRating": "",
"MarketPerformanceRating": ""
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "USDT",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 1.001,
"LASTUPDATE": 1588608031,
"MEDIAN": 1.001,
"LASTVOLUME": 173.81273594,
"LASTVOLUMETO": 174.038692496722,
"LASTTRADEID": "1588608031.1762",
"VOLUMEDAY": 15747443.121178651,
"VOLUMEDAYTO": 15755786.139271814,
"VOLUME24HOUR": 18144173.5746615,
"VOLUME24HOURTO": 18153654.859136734,
"OPENDAY": 1.001,
"HIGHDAY": 1.001,
"LOWDAY": 1,
"OPEN24HOUR": 1.001,
"HIGH24HOUR": 1.001,
"LOW24HOUR": 1,
"LASTMARKET": "Kraken",
"VOLUMEHOUR": 50565.04257573999,
"VOLUMEHOURTO": 50596.92155713554,
"OPENHOUR": 1.001,
"HIGHHOUR": 1.001,
"LOWHOUR": 1.001,
"TOPTIERVOLUME24HOUR": 18136448.759853892,
"TOPTIERVOLUME24HOURTO": 18145845.67057651,
"CHANGE24HOUR": 0,
"CHANGEPCT24HOUR": 0,
"CHANGEDAY": 0,
"CHANGEPCTDAY": 0,
"CHANGEHOUR": 0,
"CHANGEPCTHOUR": 0,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 4642367414,
"MKTCAP": 4647009781.414,
"TOTALVOLUME24H": 59767977.22565654,
"TOTALVOLUME24HTO": 59819082.31378277,
"TOTALTOPTIERVOLUME24H": 45467163.77118031,
"TOTALTOPTIERVOLUME24HTO": 45503891.39691425,
"IMAGEURL": "/media/1383672/usdt.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "₮",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 1.00",
"LASTUPDATE": "Just now",
"LASTVOLUME": "₮ 173.81",
"LASTVOLUMETO": "$ 174.04",
"LASTTRADEID": "1588608031.1762",
"VOLUMEDAY": "₮ 15,747,443.1",
"VOLUMEDAYTO": "$ 15,755,786.1",
"VOLUME24HOUR": "₮ 18,144,173.6",
"VOLUME24HOURTO": "$ 18,153,654.9",
"OPENDAY": "$ 1.00",
"HIGHDAY": "$ 1.00",
"LOWDAY": "$ 1.00",
"OPEN24HOUR": "$ 1.00",
"HIGH24HOUR": "$ 1.00",
"LOW24HOUR": "$ 1.00",
"LASTMARKET": "Kraken",
"VOLUMEHOUR": "₮ 50,565.0",
"VOLUMEHOURTO": "$ 50,596.9",
"OPENHOUR": "$ 1.00",
"HIGHHOUR": "$ 1.00",
"LOWHOUR": "$ 1.00",
"TOPTIERVOLUME24HOUR": "₮ 18,136,448.8",
"TOPTIERVOLUME24HOURTO": "$ 18,145,845.7",
"CHANGE24HOUR": "$ 0.0",
"CHANGEPCT24HOUR": "0.00",
"CHANGEDAY": "$ 0.0",
"CHANGEPCTDAY": "0.00",
"CHANGEHOUR": "$ 0.0",
"CHANGEPCTHOUR": "0.00",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "₮ 4,642,367,414.0",
"MKTCAP": "$ 4.65 B",
"TOTALVOLUME24H": "₮ 59.77 M",
"TOTALVOLUME24HTO": "$ 59.82 M",
"TOTALTOPTIERVOLUME24H": "₮ 45.47 M",
"TOTALTOPTIERVOLUME24HTO": "$ 45.50 M",
"IMAGEURL": "/media/1383672/usdt.png"
}
}
},
{
"CoinInfo": {
"Id": "202330",
"Name": "BCH",
"FullName": "Bitcoin Cash",
"Internal": "BCH",
"ImageUrl": "/media/35650680/bch.png",
"Url": "/coins/bch/overview",
"Algorithm": "SHA-256",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "C",
"TechnologyAdoptionRating": "C+",
"MarketPerformanceRating": "E"
}
},
"NetHashesPerSecond": 1951295829052530000,
"BlockNumber": 633652,
"BlockTime": 600,
"BlockReward": 6.25,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "BCH",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 247.23,
"LASTUPDATE": 1588608031,
"MEDIAN": 247.16,
"LASTVOLUME": 0.025,
"LASTVOLUMETO": 6.182500000000001,
"LASTTRADEID": "442045387",
"VOLUMEDAY": 50689.19224127965,
"VOLUMEDAYTO": 12303596.216005474,
"VOLUME24HOUR": 65314.264226840016,
"VOLUME24HOURTO": 15952597.266321843,
"OPENDAY": 251.9,
"HIGHDAY": 252.72,
"LOWDAY": 236.46,
"OPEN24HOUR": 250.37,
"HIGH24HOUR": 253.78,
"LOW24HOUR": 235.75,
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": 272.7073217,
"VOLUMEHOURTO": 67372.63797887608,
"OPENHOUR": 246.56,
"HIGHHOUR": 247.23,
"LOWHOUR": 246.54,
"TOPTIERVOLUME24HOUR": 64978.393285530015,
"TOPTIERVOLUME24HOURTO": 15869839.929257937,
"CHANGE24HOUR": -3.140000000000015,
"CHANGEPCT24HOUR": -1.2541438670767324,
"CHANGEDAY": -4.670000000000016,
"CHANGEPCTDAY": -1.8539102818578863,
"CHANGEHOUR": 0.6699999999999875,
"CHANGEPCTHOUR": 0.27173913043477754,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 18397814.6467999,
"MKTCAP": 4548491715.128339,
"TOTALVOLUME24H": 2116480.834586476,
"TOTALVOLUME24HTO": 523062508.4563346,
"TOTALTOPTIERVOLUME24H": 1104368.6006473694,
"TOTALTOPTIERVOLUME24HTO": 272838280.8953255,
"IMAGEURL": "/media/35650680/bch.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "BCH",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 247.23",
"LASTUPDATE": "Just now",
"LASTVOLUME": "BCH 0.02500",
"LASTVOLUMETO": "$ 6.18",
"LASTTRADEID": "442045387",
"VOLUMEDAY": "BCH 50,689.2",
"VOLUMEDAYTO": "$ 12,303,596.2",
"VOLUME24HOUR": "BCH 65,314.3",
"VOLUME24HOURTO": "$ 15,952,597.3",
"OPENDAY": "$ 251.90",
"HIGHDAY": "$ 252.72",
"LOWDAY": "$ 236.46",
"OPEN24HOUR": "$ 250.37",
"HIGH24HOUR": "$ 253.78",
"LOW24HOUR": "$ 235.75",
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": "BCH 272.71",
"VOLUMEHOURTO": "$ 67,372.6",
"OPENHOUR": "$ 246.56",
"HIGHHOUR": "$ 247.23",
"LOWHOUR": "$ 246.54",
"TOPTIERVOLUME24HOUR": "BCH 64,978.4",
"TOPTIERVOLUME24HOURTO": "$ 15,869,839.9",
"CHANGE24HOUR": "$ -3.14",
"CHANGEPCT24HOUR": "-1.25",
"CHANGEDAY": "$ -4.67",
"CHANGEPCTDAY": "-1.85",
"CHANGEHOUR": "$ 0.67",
"CHANGEPCTHOUR": "0.27",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "BCH 18,397,814.6",
"MKTCAP": "$ 4.55 B",
"TOTALVOLUME24H": "BCH 2.12 M",
"TOTALVOLUME24HTO": "$ 523.06 M",
"TOTALTOPTIERVOLUME24H": "BCH 1.10 M",
"TOTALTOPTIERVOLUME24HTO": "$ 272.84 M",
"IMAGEURL": "/media/35650680/bch.png"
}
}
},
{
"CoinInfo": {
"Id": "933127",
"Name": "PLF",
"FullName": "PlayFuel",
"Internal": "PLF",
"ImageUrl": "/media/36639916/plf.png",
"Url": "/coins/plf/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "",
"TechnologyAdoptionRating": "",
"MarketPerformanceRating": ""
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "PLF",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 0.3965967291,
"LASTUPDATE": 1588608036,
"MEDIAN": 0.3968634384,
"LASTVOLUME": 4989,
"LASTVOLUMETO": 1978.6210814799,
"LASTTRADEID": "42096864",
"VOLUMEDAY": 2965368.687925504,
"VOLUMEDAYTO": 1176055.522206814,
"VOLUME24HOUR": 4533224.26882737,
"VOLUME24HOURTO": 1797861.917293674,
"OPENDAY": 0.3941074422999999,
"HIGHDAY": 0.3981080818,
"LOWDAY": 0.392062671,
"OPEN24HOUR": 0.3941963454,
"HIGH24HOUR": 0.3986415004,
"LOW24HOUR": 0.3905513183,
"LASTMARKET": "crex24",
"VOLUMEHOUR": 0,
"VOLUMEHOURTO": 0,
"OPENHOUR": 0.3965967291,
"HIGHHOUR": 0.3965967291,
"LOWHOUR": 0.3965967291,
"TOPTIERVOLUME24HOUR": 0,
"TOPTIERVOLUME24HOURTO": 0,
"CHANGE24HOUR": 0.0024003837000000083,
"CHANGEPCT24HOUR": 0.6089309878213824,
"CHANGEDAY": 0.002489286800000101,
"CHANGEPCTDAY": 0.6316264380780768,
"CHANGEHOUR": 0,
"CHANGEPCTHOUR": 0,
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "BTC",
"SUPPLY": 10000000000,
"MKTCAP": 3965967291,
"TOTALVOLUME24H": 12742333.071138393,
"TOTALVOLUME24HTO": 5053567.6171162445,
"TOTALTOPTIERVOLUME24H": 0,
"TOTALTOPTIERVOLUME24HTO": 0,
"IMAGEURL": "/media/36639916/plf.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "PLF",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.3966",
"LASTUPDATE": "Just now",
"LASTVOLUME": "PLF 4,989.00",
"LASTVOLUMETO": "$ 1,978.62",
"LASTTRADEID": "42096864",
"VOLUMEDAY": "PLF 2,965,368.7",
"VOLUMEDAYTO": "$ 1,176,055.5",
"VOLUME24HOUR": "PLF 4,533,224.3",
"VOLUME24HOURTO": "$ 1,797,861.9",
"OPENDAY": "$ 0.3941",
"HIGHDAY": "$ 0.3981",
"LOWDAY": "$ 0.3921",
"OPEN24HOUR": "$ 0.3942",
"HIGH24HOUR": "$ 0.3986",
"LOW24HOUR": "$ 0.3906",
"LASTMARKET": "crex24",
"VOLUMEHOUR": "PLF 0",
"VOLUMEHOURTO": "$ 0",
"OPENHOUR": "$ 0.3966",
"HIGHHOUR": "$ 0.3966",
"LOWHOUR": "$ 0.3966",
"TOPTIERVOLUME24HOUR": "PLF 0",
"TOPTIERVOLUME24HOURTO": "$ 0",
"CHANGE24HOUR": "$ 0.0024",
"CHANGEPCT24HOUR": "0.61",
"CHANGEDAY": "$ 0.0025",
"CHANGEPCTDAY": "0.63",
"CHANGEHOUR": "$ 0.0",
"CHANGEPCTHOUR": "0.00",
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "BTC",
"SUPPLY": "PLF 10,000,000,000.0",
"MKTCAP": "$ 3.97 B",
"TOTALVOLUME24H": "PLF 12.74 M",
"TOTALVOLUME24HTO": "$ 5.05 M",
"TOTALTOPTIERVOLUME24H": "PLF 0",
"TOTALTOPTIERVOLUME24HTO": "$ 0",
"IMAGEURL": "/media/36639916/plf.png"
}
}
},
{
"CoinInfo": {
"Id": "934311",
"Name": "ELAMA",
"FullName": "Elamachain",
"Internal": "ELAMA",
"ImageUrl": "/media/36934886/elama.png",
"Url": "/coins/elama/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "",
"TechnologyAdoptionRating": "",
"MarketPerformanceRating": ""
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "ELAMA",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 0.387617516,
"LASTUPDATE": 1588608036,
"MEDIAN": 0.387617516,
"LASTVOLUME": 733.432,
"LASTVOLUMETO": 284.291089994912,
"LASTTRADEID": "15886075550001",
"VOLUMEDAY": 69620.32608695001,
"VOLUMEDAYTO": 26986.05786093356,
"VOLUME24HOUR": 110446.44461295,
"VOLUME24HOURTO": 42810.97651190326,
"OPENDAY": 0.3879731284,
"HIGHDAY": 0.3882398377,
"LOWDAY": 0.3873508066999999,
"OPEN24HOUR": 0.388506547,
"HIGH24HOUR": 0.3885954501,
"LOW24HOUR": 0.3873508066999999,
"LASTMARKET": "BitTrex",
"VOLUMEHOUR": 0,
"VOLUMEHOURTO": 0,
"OPENHOUR": 0.387617516,
"HIGHHOUR": 0.387617516,
"LOWHOUR": 0.387617516,
"TOPTIERVOLUME24HOUR": 110446.44461295,
"TOPTIERVOLUME24HOURTO": 42810.97651190326,
"CHANGE24HOUR": -0.0008890309999999846,
"CHANGEPCT24HOUR": -0.22883295194507614,
"CHANGEDAY": -0.00035561239999998273,
"CHANGEPCTDAY": -0.09165902841429437,
"CHANGEHOUR": 0,
"CHANGEPCTHOUR": 0,
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "BTC",
"SUPPLY": 10000000000,
"MKTCAP": 3876175160,
"TOTALVOLUME24H": 110446.44461295,
"TOTALVOLUME24HTO": 42810.97651190326,
"TOTALTOPTIERVOLUME24H": 110446.44461295,
"TOTALTOPTIERVOLUME24HTO": 42810.97651190326,
"IMAGEURL": "/media/36934886/elama.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "ELAMA",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.3876",
"LASTUPDATE": "Just now",
"LASTVOLUME": "ELAMA 733.43",
"LASTVOLUMETO": "$ 284.29",
"LASTTRADEID": "15886075550001",
"VOLUMEDAY": "ELAMA 69,620.3",
"VOLUMEDAYTO": "$ 26,986.1",
"VOLUME24HOUR": "ELAMA 110,446.4",
"VOLUME24HOURTO": "$ 42,811.0",
"OPENDAY": "$ 0.3880",
"HIGHDAY": "$ 0.3882",
"LOWDAY": "$ 0.3874",
"OPEN24HOUR": "$ 0.3885",
"HIGH24HOUR": "$ 0.3886",
"LOW24HOUR": "$ 0.3874",
"LASTMARKET": "BitTrex",
"VOLUMEHOUR": "ELAMA 0",
"VOLUMEHOURTO": "$ 0",
"OPENHOUR": "$ 0.3876",
"HIGHHOUR": "$ 0.3876",
"LOWHOUR": "$ 0.3876",
"TOPTIERVOLUME24HOUR": "ELAMA 110,446.4",
"TOPTIERVOLUME24HOURTO": "$ 42,811.0",
"CHANGE24HOUR": "$ -0.00089",
"CHANGEPCT24HOUR": "-0.23",
"CHANGEDAY": "$ -0.00036",
"CHANGEPCTDAY": "-0.09",
"CHANGEHOUR": "$ 0.0",
"CHANGEPCTHOUR": "0.00",
"CONVERSIONTYPE": "multiply",
"CONVERSIONSYMBOL": "BTC",
"SUPPLY": "ELAMA 10,000,000,000.0",
"MKTCAP": "$ 3.88 B",
"TOTALVOLUME24H": "ELAMA 110.45 K",
"TOTALVOLUME24HTO": "$ 42.81 K",
"TOTALTOPTIERVOLUME24H": "ELAMA 110.45 K",
"TOTALTOPTIERVOLUME24HTO": "$ 42.81 K",
"IMAGEURL": "/media/36934886/elama.png"
}
}
}
],
"RateLimit": {},
"HasWarning": false
}
Parameter | Type | Description |
---|---|---|
CoinInfo | Object | Coin info data. |
RAW | Object | Raw data. |
DISPLAY | Object | Display data. |
CCTopListVolume24H
Sample Data
{
"limit": "10",
"currency": "USD"
}
Returns the top list of 24 hour volume. Pricing information provided by Crypto Compare.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["10","USD"]' https://api.maplenodes.com/v1/CCTopListVolume24H
CCTopListVolume24H [limit] [currency]
Parameter | Type | Description |
---|---|---|
limit | int | Number of assets to return in toplist (10-100) |
currency | string | World currency. |
Response Parameters
Sample 200 Response
{
"Message": "Success",
"Type": 100,
"SponsoredData": [],
"Data": [
{
"CoinInfo": {
"Id": "1182",
"Name": "BTC",
"FullName": "Bitcoin",
"Internal": "BTC",
"ImageUrl": "/media/19633/btc.png",
"Url": "/coins/btc/overview",
"Algorithm": "SHA-256",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "B+",
"TechnologyAdoptionRating": "A",
"MarketPerformanceRating": "D"
}
},
"NetHashesPerSecond": 114238226202.791,
"BlockNumber": 628912,
"BlockTime": 600,
"BlockReward": 12.5,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "BTC",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 8884.06,
"LASTUPDATE": 1588608085,
"MEDIAN": 8874.98,
"LASTVOLUME": 0.01,
"LASTVOLUMETO": 88.875,
"LASTTRADEID": "1588608085_1",
"VOLUMEDAY": 45232.47557574955,
"VOLUMEDAYTO": 394706362.9450392,
"VOLUME24HOUR": 57183.6670712809,
"VOLUME24HOURTO": 500706356.6172946,
"OPENDAY": 8907.07,
"HIGHDAY": 8946.95,
"LOWDAY": 8537.49,
"OPEN24HOUR": 8859,
"HIGH24HOUR": 8967.86,
"LOW24HOUR": 8513.06,
"LASTMARKET": "lmax",
"VOLUMEHOUR": 526.3744268199976,
"VOLUMEHOURTO": 4673329.087019654,
"OPENHOUR": 8854.23,
"HIGHHOUR": 8891.56,
"LOWHOUR": 8854.2,
"TOPTIERVOLUME24HOUR": 54906.51324697089,
"TOPTIERVOLUME24HOURTO": 480733314.2135993,
"CHANGE24HOUR": 25.05999999999949,
"CHANGEPCT24HOUR": 0.2828761711254034,
"CHANGEDAY": -23.01000000000022,
"CHANGEPCTDAY": -0.25833410987002703,
"CHANGEHOUR": 29.829999999999927,
"CHANGEPCTHOUR": 0.3369011195778733,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 18361400,
"MKTCAP": 163123779284,
"TOTALVOLUME24H": 646499.5483110677,
"TOTALVOLUME24HTO": 5736224004.504435,
"TOTALTOPTIERVOLUME24H": 414822.2748669354,
"TOTALTOPTIERVOLUME24HTO": 3678246535.391061,
"IMAGEURL": "/media/19633/btc.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "Ƀ",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 8,884.06",
"LASTUPDATE": "Just now",
"LASTVOLUME": "Ƀ 0.01000",
"LASTVOLUMETO": "$ 88.88",
"LASTTRADEID": "1588608085_1",
"VOLUMEDAY": "Ƀ 45,232.5",
"VOLUMEDAYTO": "$ 394,706,362.9",
"VOLUME24HOUR": "Ƀ 57,183.7",
"VOLUME24HOURTO": "$ 500,706,356.6",
"OPENDAY": "$ 8,907.07",
"HIGHDAY": "$ 8,946.95",
"LOWDAY": "$ 8,537.49",
"OPEN24HOUR": "$ 8,859.00",
"HIGH24HOUR": "$ 8,967.86",
"LOW24HOUR": "$ 8,513.06",
"LASTMARKET": "lmax",
"VOLUMEHOUR": "Ƀ 526.37",
"VOLUMEHOURTO": "$ 4,673,329.1",
"OPENHOUR": "$ 8,854.23",
"HIGHHOUR": "$ 8,891.56",
"LOWHOUR": "$ 8,854.20",
"TOPTIERVOLUME24HOUR": "Ƀ 54,906.5",
"TOPTIERVOLUME24HOURTO": "$ 480,733,314.2",
"CHANGE24HOUR": "$ 25.06",
"CHANGEPCT24HOUR": "0.28",
"CHANGEDAY": "$ -23.01",
"CHANGEPCTDAY": "-0.26",
"CHANGEHOUR": "$ 29.83",
"CHANGEPCTHOUR": "0.34",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "Ƀ 18,361,400.0",
"MKTCAP": "$ 163.12 B",
"TOTALVOLUME24H": "Ƀ 646.50 K",
"TOTALVOLUME24HTO": "$ 5.74 B",
"TOTALTOPTIERVOLUME24H": "Ƀ 414.82 K",
"TOTALTOPTIERVOLUME24HTO": "$ 3.68 B",
"IMAGEURL": "/media/19633/btc.png"
}
}
},
{
"CoinInfo": {
"Id": "7605",
"Name": "ETH",
"FullName": "Ethereum",
"Internal": "ETH",
"ImageUrl": "/media/20646/eth_logo.png",
"Url": "/coins/eth/overview",
"Algorithm": "Ethash",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "B+",
"TechnologyAdoptionRating": "A",
"MarketPerformanceRating": "D"
}
},
"NetHashesPerSecond": 180269998621113,
"BlockNumber": 10000605,
"BlockTime": 15,
"BlockReward": 2,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "ETH",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 206.77,
"LASTUPDATE": 1588608084,
"MEDIAN": 206.75,
"LASTVOLUME": 2.9116,
"LASTVOLUMETO": 602.031532,
"LASTTRADEID": "509515",
"VOLUMEDAY": 470103.6117200457,
"VOLUMEDAYTO": 95035992.22237962,
"VOLUME24HOUR": 568378.2559965601,
"VOLUME24HOURTO": 115574677.19726644,
"OPENDAY": 210.06,
"HIGHDAY": 210.81,
"LOWDAY": 195.3,
"OPEN24HOUR": 208.98,
"HIGH24HOUR": 211.75,
"LOW24HOUR": 195.09,
"LASTMARKET": "OKCoin",
"VOLUMEHOUR": 2742.558382990002,
"VOLUMEHOURTO": 566954.5107032723,
"OPENHOUR": 206.23,
"HIGHHOUR": 206.95,
"LOWHOUR": 206.23,
"TOPTIERVOLUME24HOUR": 554794.5518189,
"TOPTIERVOLUME24HOURTO": 112817150.6273891,
"CHANGE24HOUR": -2.2099999999999795,
"CHANGEPCT24HOUR": -1.0575174657861899,
"CHANGEDAY": -3.289999999999992,
"CHANGEPCTDAY": -1.5662191754736703,
"CHANGEHOUR": 0.5400000000000205,
"CHANGEPCTHOUR": 0.2618435727100909,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 110789015.874,
"MKTCAP": 22907844812.26698,
"TOTALVOLUME24H": 11661546.354900157,
"TOTALVOLUME24HTO": 2409309045.007563,
"TOTALTOPTIERVOLUME24H": 6102021.593037258,
"TOTALTOPTIERVOLUME24HTO": 1259817285.9401093,
"IMAGEURL": "/media/20646/eth_logo.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "Ξ",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 206.77",
"LASTUPDATE": "Just now",
"LASTVOLUME": "Ξ 2.91",
"LASTVOLUMETO": "$ 602.03",
"LASTTRADEID": "509515",
"VOLUMEDAY": "Ξ 470,103.6",
"VOLUMEDAYTO": "$ 95,035,992.2",
"VOLUME24HOUR": "Ξ 568,378.3",
"VOLUME24HOURTO": "$ 115,574,677.2",
"OPENDAY": "$ 210.06",
"HIGHDAY": "$ 210.81",
"LOWDAY": "$ 195.30",
"OPEN24HOUR": "$ 208.98",
"HIGH24HOUR": "$ 211.75",
"LOW24HOUR": "$ 195.09",
"LASTMARKET": "OKCoin",
"VOLUMEHOUR": "Ξ 2,742.56",
"VOLUMEHOURTO": "$ 566,954.5",
"OPENHOUR": "$ 206.23",
"HIGHHOUR": "$ 206.95",
"LOWHOUR": "$ 206.23",
"TOPTIERVOLUME24HOUR": "Ξ 554,794.6",
"TOPTIERVOLUME24HOURTO": "$ 112,817,150.6",
"CHANGE24HOUR": "$ -2.21",
"CHANGEPCT24HOUR": "-1.06",
"CHANGEDAY": "$ -3.29",
"CHANGEPCTDAY": "-1.57",
"CHANGEHOUR": "$ 0.54",
"CHANGEPCTHOUR": "0.26",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "Ξ 110,789,015.9",
"MKTCAP": "$ 22.91 B",
"TOTALVOLUME24H": "Ξ 11.66 M",
"TOTALVOLUME24HTO": "$ 2.41 B",
"TOTALTOPTIERVOLUME24H": "Ξ 6.10 M",
"TOTALTOPTIERVOLUME24HTO": "$ 1.26 B",
"IMAGEURL": "/media/20646/eth_logo.png"
}
}
},
{
"CoinInfo": {
"Id": "166503",
"Name": "EOS",
"FullName": "EOS",
"Internal": "EOS",
"ImageUrl": "/media/1383652/eos_1.png",
"Url": "/coins/eos/overview",
"Algorithm": "DPoS",
"ProofType": "DPoS",
"Rating": {
"Weiss": {
"Rating": "C+",
"TechnologyAdoptionRating": "B-",
"MarketPerformanceRating": "D-"
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 69480094,
"BlockTime": 3,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "EOS",
"TOSYMBOL": "USD",
"FLAGS": "516",
"PRICE": 2.785,
"LASTUPDATE": 1588608088,
"MEDIAN": 2.7815,
"LASTVOLUME": 19.2,
"LASTVOLUMETO": 53.404799999999994,
"LASTTRADEID": "442043458",
"VOLUMEDAY": 1863770.5186698542,
"VOLUMEDAYTO": 5066036.446964271,
"VOLUME24HOUR": 2147426.25136197,
"VOLUME24HOURTO": 5856771.10049991,
"OPENDAY": 2.839,
"HIGHDAY": 2.847,
"LOWDAY": 2.631,
"OPEN24HOUR": 2.827,
"HIGH24HOUR": 2.85,
"LOW24HOUR": 2.63,
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": 13298.799688400013,
"VOLUMEHOURTO": 37076.34157046786,
"OPENHOUR": 2.779,
"HIGHHOUR": 2.79,
"LOWHOUR": 2.779,
"TOPTIERVOLUME24HOUR": 2147372.39346232,
"TOPTIERVOLUME24HOURTO": 5856622.2967562685,
"CHANGE24HOUR": -0.041999999999999815,
"CHANGEPCT24HOUR": -1.4856738592147087,
"CHANGEDAY": -0.053999999999999826,
"CHANGEPCTDAY": -1.9020781965480742,
"CHANGEHOUR": 0.006000000000000227,
"CHANGEPCTHOUR": 0.21590500179921654,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 1020544523.0722,
"MKTCAP": 2842216496.756077,
"TOTALVOLUME24H": 234133193.5701495,
"TOTALVOLUME24HTO": 651937133.0833232,
"TOTALTOPTIERVOLUME24H": 113606363.88563548,
"TOTALTOPTIERVOLUME24HTO": 316269913.60245854,
"IMAGEURL": "/media/1383652/eos_1.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "EOS",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 2.79",
"LASTUPDATE": "Just now",
"LASTVOLUME": "EOS 19.20",
"LASTVOLUMETO": "$ 53.40",
"LASTTRADEID": "442043458",
"VOLUMEDAY": "EOS 1,863,770.5",
"VOLUMEDAYTO": "$ 5,066,036.4",
"VOLUME24HOUR": "EOS 2,147,426.3",
"VOLUME24HOURTO": "$ 5,856,771.1",
"OPENDAY": "$ 2.84",
"HIGHDAY": "$ 2.85",
"LOWDAY": "$ 2.63",
"OPEN24HOUR": "$ 2.83",
"HIGH24HOUR": "$ 2.85",
"LOW24HOUR": "$ 2.63",
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": "EOS 13,298.8",
"VOLUMEHOURTO": "$ 37,076.3",
"OPENHOUR": "$ 2.78",
"HIGHHOUR": "$ 2.79",
"LOWHOUR": "$ 2.78",
"TOPTIERVOLUME24HOUR": "EOS 2,147,372.4",
"TOPTIERVOLUME24HOURTO": "$ 5,856,622.3",
"CHANGE24HOUR": "$ -0.042",
"CHANGEPCT24HOUR": "-1.49",
"CHANGEDAY": "$ -0.054",
"CHANGEPCTDAY": "-1.90",
"CHANGEHOUR": "$ 0.0060",
"CHANGEPCTHOUR": "0.22",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "EOS 1,020,544,523.1",
"MKTCAP": "$ 2.84 B",
"TOTALVOLUME24H": "EOS 234.13 M",
"TOTALVOLUME24HTO": "$ 651.94 M",
"TOTALTOPTIERVOLUME24H": "EOS 113.61 M",
"TOTALTOPTIERVOLUME24HTO": "$ 316.27 M",
"IMAGEURL": "/media/1383652/eos_1.png"
}
}
},
{
"CoinInfo": {
"Id": "844139",
"Name": "TUSD",
"FullName": "True USD",
"Internal": "TUSD",
"ImageUrl": "/media/35650578/tusd.png",
"Url": "/coins/tusd/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "",
"TechnologyAdoptionRating": "",
"MarketPerformanceRating": ""
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "TUSD",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 0.9970089730807579,
"LASTUPDATE": 1588606011,
"MEDIAN": 0.9970089730807579,
"LASTVOLUME": 65.62629,
"LASTVOLUMETO": 65.43,
"LASTTRADEID": "837113828",
"VOLUMEDAY": 15619.328411970006,
"VOLUMEDAYTO": 15600.559999999998,
"VOLUME24HOUR": 20187.20907802,
"VOLUME24HOURTO": 20172.26,
"OPENDAY": 0.9990009990009991,
"HIGHDAY": 1.001001001001001,
"LOWDAY": 0.9970089730807579,
"OPEN24HOUR": 1,
"HIGH24HOUR": 1.002004008016032,
"LOW24HOUR": 0.9970089730807579,
"LASTMARKET": "HitBTC",
"VOLUMEHOUR": 0,
"VOLUMEHOURTO": 0,
"OPENHOUR": 0.9970089730807579,
"HIGHHOUR": 0.9970089730807579,
"LOWHOUR": 0.9970089730807579,
"TOPTIERVOLUME24HOUR": 20187.20907802,
"TOPTIERVOLUME24HOURTO": 20172.26,
"CHANGE24HOUR": -0.0029910269192421346,
"CHANGEPCT24HOUR": -0.29910269192421346,
"CHANGEDAY": -0.0019920259202412804,
"CHANGEPCTDAY": -0.19940179461615215,
"CHANGEHOUR": 0,
"CHANGEPCTHOUR": 0,
"CONVERSIONTYPE": "invert",
"CONVERSIONSYMBOL": "",
"SUPPLY": 137381003.68,
"MKTCAP": 136970093.39980063,
"TOTALVOLUME24H": 619121293.4166268,
"TOTALVOLUME24HTO": 617269530.3931494,
"TOTALTOPTIERVOLUME24H": 7151110.249568579,
"TOTALTOPTIERVOLUME24HTO": 7129766.517717407,
"IMAGEURL": "/media/35650578/tusd.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "TUSD",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.9970",
"LASTUPDATE": "34 min ago",
"LASTVOLUME": "TUSD 65.63",
"LASTVOLUMETO": "$ 65.43",
"LASTTRADEID": "837113828",
"VOLUMEDAY": "TUSD 15,619.3",
"VOLUMEDAYTO": "$ 15,600.6",
"VOLUME24HOUR": "TUSD 20,187.2",
"VOLUME24HOURTO": "$ 20,172.3",
"OPENDAY": "$ 0.9990",
"HIGHDAY": "$ 1.00",
"LOWDAY": "$ 0.9970",
"OPEN24HOUR": "$ 1.00",
"HIGH24HOUR": "$ 1.00",
"LOW24HOUR": "$ 0.9970",
"LASTMARKET": "HitBTC",
"VOLUMEHOUR": "TUSD 0",
"VOLUMEHOURTO": "$ 0",
"OPENHOUR": "$ 0.9970",
"HIGHHOUR": "$ 0.9970",
"LOWHOUR": "$ 0.9970",
"TOPTIERVOLUME24HOUR": "TUSD 20,187.2",
"TOPTIERVOLUME24HOURTO": "$ 20,172.3",
"CHANGE24HOUR": "$ -0.0030",
"CHANGEPCT24HOUR": "-0.30",
"CHANGEDAY": "$ -0.0020",
"CHANGEPCTDAY": "-0.20",
"CHANGEHOUR": "$ 0.0",
"CHANGEPCTHOUR": "0.00",
"CONVERSIONTYPE": "invert",
"CONVERSIONSYMBOL": "",
"SUPPLY": "TUSD 137,381,003.7",
"MKTCAP": "$ 136.97 M",
"TOTALVOLUME24H": "TUSD 619.12 M",
"TOTALVOLUME24HTO": "$ 617.27 M",
"TOTALTOPTIERVOLUME24H": "TUSD 7.15 M",
"TOTALTOPTIERVOLUME24HTO": "$ 7.13 M",
"IMAGEURL": "/media/35650578/tusd.png"
}
}
},
{
"CoinInfo": {
"Id": "202330",
"Name": "BCH",
"FullName": "Bitcoin Cash",
"Internal": "BCH",
"ImageUrl": "/media/35650680/bch.png",
"Url": "/coins/bch/overview",
"Algorithm": "SHA-256",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "C",
"TechnologyAdoptionRating": "C+",
"MarketPerformanceRating": "E"
}
},
"NetHashesPerSecond": 1977960925466640000,
"BlockNumber": 633654,
"BlockTime": 600,
"BlockReward": 6.25,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "BCH",
"TOSYMBOL": "USD",
"FLAGS": "2050",
"PRICE": 247.2,
"LASTUPDATE": 1588608077,
"MEDIAN": 247.2,
"LASTVOLUME": 3.41,
"LASTVOLUMETO": 843.3271000000001,
"LASTTRADEID": "16062485",
"VOLUMEDAY": 50701.130625349644,
"VOLUMEDAYTO": 12306550.494803313,
"VOLUME24HOUR": 65326.20261091001,
"VOLUME24HOURTO": 15955551.545119682,
"OPENDAY": 251.9,
"HIGHDAY": 252.72,
"LOWDAY": 236.46,
"OPEN24HOUR": 250.37,
"HIGH24HOUR": 253.78,
"LOW24HOUR": 235.75,
"LASTMARKET": "Coinbase",
"VOLUMEHOUR": 284.64570577000006,
"VOLUMEHOURTO": 70326.91677671496,
"OPENHOUR": 246.56,
"HIGHHOUR": 247.41,
"LOWHOUR": 246.54,
"TOPTIERVOLUME24HOUR": 64990.331669600004,
"TOPTIERVOLUME24HOURTO": 15872794.208055776,
"CHANGE24HOUR": -3.170000000000016,
"CHANGEPCT24HOUR": -1.2661261333226888,
"CHANGEDAY": -4.700000000000017,
"CHANGEPCTDAY": -1.8658197697499075,
"CHANGEHOUR": 0.6399999999999864,
"CHANGEPCTHOUR": 0.2595717066839659,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 18397827.1467999,
"MKTCAP": 4547942870.688935,
"TOTALVOLUME24H": 2120226.2980311844,
"TOTALVOLUME24HTO": 523926855.1330115,
"TOTALTOPTIERVOLUME24H": 1106841.108242674,
"TOTALTOPTIERVOLUME24HTO": 273418306.1769197,
"IMAGEURL": "/media/35650680/bch.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "BCH",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 247.20",
"LASTUPDATE": "Just now",
"LASTVOLUME": "BCH 3.41",
"LASTVOLUMETO": "$ 843.33",
"LASTTRADEID": "16062485",
"VOLUMEDAY": "BCH 50,701.1",
"VOLUMEDAYTO": "$ 12,306,550.5",
"VOLUME24HOUR": "BCH 65,326.2",
"VOLUME24HOURTO": "$ 15,955,551.5",
"OPENDAY": "$ 251.90",
"HIGHDAY": "$ 252.72",
"LOWDAY": "$ 236.46",
"OPEN24HOUR": "$ 250.37",
"HIGH24HOUR": "$ 253.78",
"LOW24HOUR": "$ 235.75",
"LASTMARKET": "Coinbase",
"VOLUMEHOUR": "BCH 284.65",
"VOLUMEHOURTO": "$ 70,326.9",
"OPENHOUR": "$ 246.56",
"HIGHHOUR": "$ 247.41",
"LOWHOUR": "$ 246.54",
"TOPTIERVOLUME24HOUR": "BCH 64,990.3",
"TOPTIERVOLUME24HOURTO": "$ 15,872,794.2",
"CHANGE24HOUR": "$ -3.17",
"CHANGEPCT24HOUR": "-1.27",
"CHANGEDAY": "$ -4.70",
"CHANGEPCTDAY": "-1.87",
"CHANGEHOUR": "$ 0.64",
"CHANGEPCTHOUR": "0.26",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "BCH 18,397,827.1",
"MKTCAP": "$ 4.55 B",
"TOTALVOLUME24H": "BCH 2.12 M",
"TOTALVOLUME24HTO": "$ 523.93 M",
"TOTALTOPTIERVOLUME24H": "BCH 1.11 M",
"TOTALTOPTIERVOLUME24HTO": "$ 273.42 M",
"IMAGEURL": "/media/35650680/bch.png"
}
}
},
{
"CoinInfo": {
"Id": "5324",
"Name": "ETC",
"FullName": "Ethereum Classic",
"Internal": "ETC",
"ImageUrl": "/media/33752295/etc_new.png",
"Url": "/coins/etc/overview",
"Algorithm": "Ethash",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "C+",
"TechnologyAdoptionRating": "B-",
"MarketPerformanceRating": "E+"
}
},
"NetHashesPerSecond": 8510964339720,
"BlockNumber": 0,
"BlockTime": 14,
"BlockReward": 3.2,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "ETC",
"TOSYMBOL": "USD",
"FLAGS": "1026",
"PRICE": 7.298,
"LASTUPDATE": 1588608070,
"MEDIAN": 7.311,
"LASTVOLUME": 8.2114,
"LASTVOLUMETO": 60.148505,
"LASTTRADEID": "1588608070.1827",
"VOLUMEDAY": 619493.0932036992,
"VOLUMEDAYTO": 4343489.357684183,
"VOLUME24HOUR": 905097.60209333,
"VOLUME24HOURTO": 6405343.7096770555,
"OPENDAY": 7.219,
"HIGHDAY": 7.357,
"LOWDAY": 6.683,
"OPEN24HOUR": 7.342,
"HIGH24HOUR": 7.399,
"LOW24HOUR": 6.68,
"LASTMARKET": "Kraken",
"VOLUMEHOUR": 5906.946863309998,
"VOLUMEHOURTO": 43317.507270999675,
"OPENHOUR": 7.293,
"HIGHHOUR": 7.357,
"LOWHOUR": 7.293,
"TOPTIERVOLUME24HOUR": 905097.60209333,
"TOPTIERVOLUME24HOURTO": 6405343.7096770555,
"CHANGE24HOUR": -0.043999999999999595,
"CHANGEPCT24HOUR": -0.5992917461182184,
"CHANGEDAY": 0.07899999999999974,
"CHANGEPCTDAY": 1.0943343953456122,
"CHANGEHOUR": 0.004999999999999893,
"CHANGEPCTHOUR": 0.06855889208830239,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 114733314.76127,
"MKTCAP": 837323731.1277485,
"TOTALVOLUME24H": 70708441.23581254,
"TOTALVOLUME24HTO": 515830145.5485599,
"TOTALTOPTIERVOLUME24H": 36096350.099910006,
"TOTALTOPTIERVOLUME24HTO": 263231104.43874317,
"IMAGEURL": "/media/33752295/etc_new.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "ETC",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 7.30",
"LASTUPDATE": "Just now",
"LASTVOLUME": "ETC 8.21",
"LASTVOLUMETO": "$ 60.15",
"LASTTRADEID": "1588608070.1827",
"VOLUMEDAY": "ETC 619,493.1",
"VOLUMEDAYTO": "$ 4,343,489.4",
"VOLUME24HOUR": "ETC 905,097.6",
"VOLUME24HOURTO": "$ 6,405,343.7",
"OPENDAY": "$ 7.22",
"HIGHDAY": "$ 7.36",
"LOWDAY": "$ 6.68",
"OPEN24HOUR": "$ 7.34",
"HIGH24HOUR": "$ 7.40",
"LOW24HOUR": "$ 6.68",
"LASTMARKET": "Kraken",
"VOLUMEHOUR": "ETC 5,906.95",
"VOLUMEHOURTO": "$ 43,317.5",
"OPENHOUR": "$ 7.29",
"HIGHHOUR": "$ 7.36",
"LOWHOUR": "$ 7.29",
"TOPTIERVOLUME24HOUR": "ETC 905,097.6",
"TOPTIERVOLUME24HOURTO": "$ 6,405,343.7",
"CHANGE24HOUR": "$ -0.044",
"CHANGEPCT24HOUR": "-0.60",
"CHANGEDAY": "$ 0.079",
"CHANGEPCTDAY": "1.09",
"CHANGEHOUR": "$ 0.0050",
"CHANGEPCTHOUR": "0.07",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "ETC 114,733,314.8",
"MKTCAP": "$ 837.32 M",
"TOTALVOLUME24H": "ETC 70.71 M",
"TOTALVOLUME24HTO": "$ 515.83 M",
"TOTALTOPTIERVOLUME24H": "ETC 36.10 M",
"TOTALTOPTIERVOLUME24HTO": "$ 263.23 M",
"IMAGEURL": "/media/33752295/etc_new.png"
}
}
},
{
"CoinInfo": {
"Id": "926591",
"Name": "BSV",
"FullName": "Bitcoin SV",
"Internal": "BSV",
"ImageUrl": "/media/35309257/bsv1.png",
"Url": "/coins/bsv/overview",
"Algorithm": "SHA-256",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "D+",
"TechnologyAdoptionRating": "C-",
"MarketPerformanceRating": "D-"
}
},
"NetHashesPerSecond": 1555630723797500000,
"BlockNumber": 633466,
"BlockTime": 0,
"BlockReward": 6.25,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "BSV",
"TOSYMBOL": "USD",
"FLAGS": "1028",
"PRICE": 204.67,
"LASTUPDATE": 1588608086,
"MEDIAN": 204.28,
"LASTVOLUME": 1.46297246,
"LASTVOLUMETO": 298.8560141288,
"LASTTRADEID": "442034004",
"VOLUMEDAY": 10219.041728539984,
"VOLUMEDAYTO": 2048248.9053474243,
"VOLUME24HOUR": 10959.17042628,
"VOLUME24HOURTO": 2200948.671280569,
"OPENDAY": 207.91,
"HIGHDAY": 209.39,
"LOWDAY": 191.22,
"OPEN24HOUR": 206.94,
"HIGH24HOUR": 209.51,
"LOW24HOUR": 191.35,
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": 32.5819733,
"VOLUMEHOURTO": 6661.6769360888,
"OPENHOUR": 203.69,
"HIGHHOUR": 204.96,
"LOWHOUR": 203.69,
"TOPTIERVOLUME24HOUR": 10959.17042628,
"TOPTIERVOLUME24HOURTO": 2200948.671280569,
"CHANGE24HOUR": -2.2700000000000102,
"CHANGEPCT24HOUR": -1.0969363100415628,
"CHANGEDAY": -3.240000000000009,
"CHANGEPCTDAY": -1.5583666009331005,
"CHANGEHOUR": 0.9799999999999898,
"CHANGEPCTHOUR": 0.48112327556580575,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 18396652.0819233,
"MKTCAP": 3765242781.607241,
"TOTALVOLUME24H": 1779612.0747343851,
"TOTALVOLUME24HTO": 364191138.5960204,
"TOTALTOPTIERVOLUME24H": 1073525.0475900215,
"TOTALTOPTIERVOLUME24HTO": 219676306.75038353,
"IMAGEURL": "/media/35309257/bsv1.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "BSV",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 204.67",
"LASTUPDATE": "Just now",
"LASTVOLUME": "BSV 1.46",
"LASTVOLUMETO": "$ 298.86",
"LASTTRADEID": "442034004",
"VOLUMEDAY": "BSV 10,219.0",
"VOLUMEDAYTO": "$ 2,048,248.9",
"VOLUME24HOUR": "BSV 10,959.2",
"VOLUME24HOURTO": "$ 2,200,948.7",
"OPENDAY": "$ 207.91",
"HIGHDAY": "$ 209.39",
"LOWDAY": "$ 191.22",
"OPEN24HOUR": "$ 206.94",
"HIGH24HOUR": "$ 209.51",
"LOW24HOUR": "$ 191.35",
"LASTMARKET": "Bitfinex",
"VOLUMEHOUR": "BSV 32.58",
"VOLUMEHOURTO": "$ 6,661.68",
"OPENHOUR": "$ 203.69",
"HIGHHOUR": "$ 204.96",
"LOWHOUR": "$ 203.69",
"TOPTIERVOLUME24HOUR": "BSV 10,959.2",
"TOPTIERVOLUME24HOURTO": "$ 2,200,948.7",
"CHANGE24HOUR": "$ -2.27",
"CHANGEPCT24HOUR": "-1.10",
"CHANGEDAY": "$ -3.24",
"CHANGEPCTDAY": "-1.56",
"CHANGEHOUR": "$ 0.98",
"CHANGEPCTHOUR": "0.48",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "BSV 18,396,652.1",
"MKTCAP": "$ 3.77 B",
"TOTALVOLUME24H": "BSV 1.78 M",
"TOTALVOLUME24HTO": "$ 364.19 M",
"TOTALTOPTIERVOLUME24H": "BSV 1.07 M",
"TOTALTOPTIERVOLUME24HTO": "$ 219.68 M",
"IMAGEURL": "/media/35309257/bsv1.png"
}
}
},
{
"CoinInfo": {
"Id": "5031",
"Name": "XRP",
"FullName": "XRP",
"Internal": "XRP",
"ImageUrl": "/media/34477776/xrp.png",
"Url": "/coins/xrp/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "B-",
"TechnologyAdoptionRating": "B+",
"MarketPerformanceRating": "D-"
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 4,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "XRP",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 0.219,
"LASTUPDATE": 1588608089,
"MEDIAN": 0.2188,
"LASTVOLUME": 142.148244,
"LASTVOLUMETO": 31.07502762084,
"LASTTRADEID": "15886080890002",
"VOLUMEDAY": 153828300.9552291,
"VOLUMEDAYTO": 32835240.022716925,
"VOLUME24HOUR": 188769281.79609063,
"VOLUME24HOURTO": 40466934.533296354,
"OPENDAY": 0.2194,
"HIGHDAY": 0.2207,
"LOWDAY": 0.2074,
"OPEN24HOUR": 0.2189,
"HIGH24HOUR": 0.2216,
"LOW24HOUR": 0.2074,
"LASTMARKET": "BitTrex",
"VOLUMEHOUR": 1172506.6261389903,
"VOLUMEHOURTO": 256742.53674032018,
"OPENHOUR": 0.2186,
"HIGHHOUR": 0.2192,
"LOWHOUR": 0.2186,
"TOPTIERVOLUME24HOUR": 188760483.4969959,
"TOPTIERVOLUME24HOURTO": 40465076.24511535,
"CHANGE24HOUR": 9.999999999998899e-05,
"CHANGEPCT24HOUR": 0.04568296025581955,
"CHANGEDAY": -0.00040000000000001146,
"CHANGEPCTDAY": -0.1823154056517828,
"CHANGEHOUR": 0.00040000000000001146,
"CHANGEPCTHOUR": 0.18298261665142337,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 99991850794,
"MKTCAP": 21898215323.886,
"TOTALVOLUME24H": 1667666111.4829407,
"TOTALVOLUME24HTO": 364345340.23471653,
"TOTALTOPTIERVOLUME24H": 1237082853.5591474,
"TOTALTOPTIERVOLUME24HTO": 270047675.2887265,
"IMAGEURL": "/media/34477776/xrp.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "XRP",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.2190",
"LASTUPDATE": "Just now",
"LASTVOLUME": "XRP 142.15",
"LASTVOLUMETO": "$ 31.08",
"LASTTRADEID": "15886080890002",
"VOLUMEDAY": "XRP 153,828,301.0",
"VOLUMEDAYTO": "$ 32,835,240.0",
"VOLUME24HOUR": "XRP 188,769,281.8",
"VOLUME24HOURTO": "$ 40,466,934.5",
"OPENDAY": "$ 0.2194",
"HIGHDAY": "$ 0.2207",
"LOWDAY": "$ 0.2074",
"OPEN24HOUR": "$ 0.2189",
"HIGH24HOUR": "$ 0.2216",
"LOW24HOUR": "$ 0.2074",
"LASTMARKET": "BitTrex",
"VOLUMEHOUR": "XRP 1,172,506.6",
"VOLUMEHOURTO": "$ 256,742.5",
"OPENHOUR": "$ 0.2186",
"HIGHHOUR": "$ 0.2192",
"LOWHOUR": "$ 0.2186",
"TOPTIERVOLUME24HOUR": "XRP 188,760,483.5",
"TOPTIERVOLUME24HOURTO": "$ 40,465,076.2",
"CHANGE24HOUR": "$ 0.00010",
"CHANGEPCT24HOUR": "0.05",
"CHANGEDAY": "$ -0.00040",
"CHANGEPCTDAY": "-0.18",
"CHANGEHOUR": "$ 0.00040",
"CHANGEPCTHOUR": "0.18",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "XRP 99,991,850,794.0",
"MKTCAP": "$ 21.90 B",
"TOTALVOLUME24H": "XRP 1.67 B",
"TOTALVOLUME24HTO": "$ 364.35 M",
"TOTALTOPTIERVOLUME24H": "XRP 1.24 B",
"TOTALTOPTIERVOLUME24HTO": "$ 270.05 M",
"IMAGEURL": "/media/34477776/xrp.png"
}
}
},
{
"CoinInfo": {
"Id": "3808",
"Name": "LTC",
"FullName": "Litecoin",
"Internal": "LTC",
"ImageUrl": "/media/35309662/ltc.png",
"Url": "/coins/ltc/overview",
"Algorithm": "Scrypt",
"ProofType": "PoW",
"Rating": {
"Weiss": {
"Rating": "B-",
"TechnologyAdoptionRating": "B+",
"MarketPerformanceRating": "D-"
}
},
"NetHashesPerSecond": 152498639444493,
"BlockNumber": 1835255,
"BlockTime": 150,
"BlockReward": 12.4999999975165,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "LTC",
"TOSYMBOL": "USD",
"FLAGS": "2052",
"PRICE": 47.34,
"LASTUPDATE": 1588608090,
"MEDIAN": 47.32,
"LASTVOLUME": 7.79963,
"LASTVOLUMETO": 368.7665064,
"LASTTRADEID": "62140258",
"VOLUMEDAY": 276365.9659365289,
"VOLUMEDAYTO": 12831088.37199474,
"VOLUME24HOUR": 351662.52105106995,
"VOLUME24HOURTO": 16402222.350785641,
"OPENDAY": 48.12,
"HIGHDAY": 48.24,
"LOWDAY": 45.24,
"OPEN24HOUR": 47.65,
"HIGH24HOUR": 48.31,
"LOW24HOUR": 45.22,
"LASTMARKET": "BTCAlpha",
"VOLUMEHOUR": 1002.22482775,
"VOLUMEHOURTO": 47454.90802329166,
"OPENHOUR": 47.26,
"HIGHHOUR": 47.37,
"LOWHOUR": 47.26,
"TOPTIERVOLUME24HOUR": 317581.39580665,
"TOPTIERVOLUME24HOURTO": 14813674.752956398,
"CHANGE24HOUR": -0.30999999999999517,
"CHANGEPCT24HOUR": -0.6505771248688251,
"CHANGEDAY": -0.779999999999994,
"CHANGEPCTDAY": -1.6209476309226807,
"CHANGEHOUR": 0.0800000000000054,
"CHANGEPCTHOUR": 0.169276343630989,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 64938708.0057612,
"MKTCAP": 3074198436.9927354,
"TOTALVOLUME24H": 7028675.2943008095,
"TOTALVOLUME24HTO": 332492007.03642833,
"TOTALTOPTIERVOLUME24H": 4283737.374255774,
"TOTALTOPTIERVOLUME24HTO": 202571498.77273792,
"IMAGEURL": "/media/35309662/ltc.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "Ł",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 47.34",
"LASTUPDATE": "Just now",
"LASTVOLUME": "Ł 7.80",
"LASTVOLUMETO": "$ 368.77",
"LASTTRADEID": "62140258",
"VOLUMEDAY": "Ł 276,366.0",
"VOLUMEDAYTO": "$ 12,831,088.4",
"VOLUME24HOUR": "Ł 351,662.5",
"VOLUME24HOURTO": "$ 16,402,222.4",
"OPENDAY": "$ 48.12",
"HIGHDAY": "$ 48.24",
"LOWDAY": "$ 45.24",
"OPEN24HOUR": "$ 47.65",
"HIGH24HOUR": "$ 48.31",
"LOW24HOUR": "$ 45.22",
"LASTMARKET": "BTCAlpha",
"VOLUMEHOUR": "Ł 1,002.22",
"VOLUMEHOURTO": "$ 47,454.9",
"OPENHOUR": "$ 47.26",
"HIGHHOUR": "$ 47.37",
"LOWHOUR": "$ 47.26",
"TOPTIERVOLUME24HOUR": "Ł 317,581.4",
"TOPTIERVOLUME24HOURTO": "$ 14,813,674.8",
"CHANGE24HOUR": "$ -0.31",
"CHANGEPCT24HOUR": "-0.65",
"CHANGEDAY": "$ -0.78",
"CHANGEPCTDAY": "-1.62",
"CHANGEHOUR": "$ 0.080",
"CHANGEPCTHOUR": "0.17",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "Ł 64,938,708.0",
"MKTCAP": "$ 3.07 B",
"TOTALVOLUME24H": "Ł 7.03 M",
"TOTALVOLUME24HTO": "$ 332.49 M",
"TOTALTOPTIERVOLUME24H": "Ł 4.28 M",
"TOTALTOPTIERVOLUME24HTO": "$ 202.57 M",
"IMAGEURL": "/media/35309662/ltc.png"
}
}
},
{
"CoinInfo": {
"Id": "4614",
"Name": "XLM",
"FullName": "Stellar",
"Internal": "XLM",
"ImageUrl": "/media/35521289/xlm.png",
"Url": "/coins/xlm/overview",
"Algorithm": "N/A",
"ProofType": "N/A",
"Rating": {
"Weiss": {
"Rating": "C+",
"TechnologyAdoptionRating": "B",
"MarketPerformanceRating": "D"
}
},
"NetHashesPerSecond": 0,
"BlockNumber": 0,
"BlockTime": 0,
"BlockReward": 0,
"Type": 1,
"DocumentType": "Webpagecoinp"
},
"RAW": {
"USD": {
"TYPE": "5",
"MARKET": "CCCAGG",
"FROMSYMBOL": "XLM",
"TOSYMBOL": "USD",
"FLAGS": "2049",
"PRICE": 0.07379,
"LASTUPDATE": 1588608087,
"MEDIAN": 0.0735,
"LASTVOLUME": 671,
"LASTVOLUMETO": 49.565428,
"LASTTRADEID": "4105759",
"VOLUMEDAY": 68236008.23762074,
"VOLUMEDAYTO": 4796144.216254544,
"VOLUME24HOUR": 88984556.0258368,
"VOLUME24HOURTO": 6302979.635320942,
"OPENDAY": 0.07313,
"HIGHDAY": 0.07392,
"LOWDAY": 0.06779,
"OPEN24HOUR": 0.07285,
"HIGH24HOUR": 0.07398,
"LOW24HOUR": 0.06758,
"LASTMARKET": "Coinbase",
"VOLUMEHOUR": 152598.77527931,
"VOLUMEHOURTO": 11281.00577214806,
"OPENHOUR": 0.07358,
"HIGHHOUR": 0.07392,
"LOWHOUR": 0.07358,
"TOPTIERVOLUME24HOUR": 88984480.88297966,
"TOPTIERVOLUME24HOURTO": 6302974.375320942,
"CHANGE24HOUR": 0.0009399999999999964,
"CHANGEPCT24HOUR": 1.2903225806451564,
"CHANGEDAY": 0.0006599999999999939,
"CHANGEPCTDAY": 0.902502392998761,
"CHANGEHOUR": 0.00020999999999998797,
"CHANGEPCTHOUR": 0.28540364229408527,
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": 20223415802,
"MKTCAP": 1492285852.0295799,
"TOTALVOLUME24H": 3812635899.3051987,
"TOTALVOLUME24HTO": 281071212.25590503,
"TOTALTOPTIERVOLUME24H": 609578910.5794994,
"TOTALTOPTIERVOLUME24HTO": 44717637.34262713,
"IMAGEURL": "/media/35521289/xlm.png"
}
},
"DISPLAY": {
"USD": {
"FROMSYMBOL": "XLM",
"TOSYMBOL": "$",
"MARKET": "CryptoCompare Index",
"PRICE": "$ 0.07379",
"LASTUPDATE": "Just now",
"LASTVOLUME": "XLM 671.00",
"LASTVOLUMETO": "$ 49.57",
"LASTTRADEID": "4105759",
"VOLUMEDAY": "XLM 68,236,008.2",
"VOLUMEDAYTO": "$ 4,796,144.2",
"VOLUME24HOUR": "XLM 88,984,556.0",
"VOLUME24HOURTO": "$ 6,302,979.6",
"OPENDAY": "$ 0.07313",
"HIGHDAY": "$ 0.07392",
"LOWDAY": "$ 0.06779",
"OPEN24HOUR": "$ 0.07285",
"HIGH24HOUR": "$ 0.07398",
"LOW24HOUR": "$ 0.06758",
"LASTMARKET": "Coinbase",
"VOLUMEHOUR": "XLM 152,598.8",
"VOLUMEHOURTO": "$ 11,281.0",
"OPENHOUR": "$ 0.07358",
"HIGHHOUR": "$ 0.07392",
"LOWHOUR": "$ 0.07358",
"TOPTIERVOLUME24HOUR": "XLM 88,984,480.9",
"TOPTIERVOLUME24HOURTO": "$ 6,302,974.4",
"CHANGE24HOUR": "$ 0.00094",
"CHANGEPCT24HOUR": "1.29",
"CHANGEDAY": "$ 0.00066",
"CHANGEPCTDAY": "0.90",
"CHANGEHOUR": "$ 0.00021",
"CHANGEPCTHOUR": "0.29",
"CONVERSIONTYPE": "direct",
"CONVERSIONSYMBOL": "",
"SUPPLY": "XLM 20,223,415,802.0",
"MKTCAP": "$ 1.49 B",
"TOTALVOLUME24H": "XLM 3.81 B",
"TOTALVOLUME24HTO": "$ 281.07 M",
"TOTALTOPTIERVOLUME24H": "XLM 609.58 M",
"TOTALTOPTIERVOLUME24HTO": "$ 44.72 M",
"IMAGEURL": "/media/35521289/xlm.png"
}
}
}
],
"RateLimit": {},
"HasWarning": false
}
Parameter | Type | Description |
---|---|---|
CoinInfo | Object | Coin info data. |
RAW | Object | Raw data. |
DISPLAY | Object | Display data. |
CCTopListVolumeByPair
Sample Data
{
"ticker": "BTC"
}
Returns the top list of volume by pair. Pricing information provided by Crypto Compare.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["BTC"]' https://api.maplenodes.com/v1/CCTopListVolumeByPair
CCTopListVolumeByPair [ticker]
Parameter | Type | Description |
---|---|---|
ticker | string | Crypto currency ticker. |
Response Parameters
Sample 200 Response
{
"Data": [
{
"SYMBOL": "LIPS",
"SUPPLY": 0,
"FULLNAME": "LipChain (LIPS)",
"NAME": "LipChain",
"ID": "928569",
"VOLUME24HOURTO": 13007294.48231
},
{
"SYMBOL": "ETH",
"SUPPLY": 110789041.874,
"FULLNAME": "Ethereum (ETH)",
"NAME": "Ethereum",
"ID": "7605",
"VOLUME24HOURTO": 33544.96071507822
},
{
"SYMBOL": "BCH",
"SUPPLY": 18397827.1467999,
"FULLNAME": "Bitcoin Cash (BCH)",
"NAME": "Bitcoin Cash",
"ID": "202330",
"VOLUME24HOURTO": 16496.182256017244
},
{
"SYMBOL": "EOS",
"SUPPLY": 1020544523.0722,
"FULLNAME": "EOS (EOS)",
"NAME": "EOS",
"ID": "166503",
"VOLUME24HOURTO": 16395.163909776165
},
{
"SYMBOL": "BSV",
"SUPPLY": 18396652.0819233,
"FULLNAME": "Bitcoin SV (BSV)",
"NAME": "Bitcoin SV",
"ID": "926591",
"VOLUME24HOURTO": 13363.373435626554
},
{
"SYMBOL": "ETC",
"SUPPLY": 114733314.76127,
"FULLNAME": "Ethereum Classic (ETC)",
"NAME": "Ethereum Classic",
"ID": "5324",
"VOLUME24HOURTO": 9347.157249735406
},
{
"SYMBOL": "QTUM",
"SUPPLY": 100000000,
"FULLNAME": "QTUM (QTUM)",
"NAME": "QTUM",
"ID": "112392",
"VOLUME24HOURTO": 7691.881395609399
},
{
"SYMBOL": "DATA",
"SUPPLY": 987154514,
"FULLNAME": "Streamr DATAcoin (DATA)",
"NAME": "Streamr DATAcoin",
"ID": "369151",
"VOLUME24HOURTO": 6020.170163852114
},
{
"SYMBOL": "XRP",
"SUPPLY": 99991850794,
"FULLNAME": "XRP (XRP)",
"NAME": "XRP",
"ID": "5031",
"VOLUME24HOURTO": 6010.647037081988
},
{
"SYMBOL": "LTC",
"SUPPLY": 64938708.0057612,
"FULLNAME": "Litecoin (LTC)",
"NAME": "Litecoin",
"ID": "3808",
"VOLUME24HOURTO": 5978.870334883455
},
{
"SYMBOL": "XLM",
"SUPPLY": 20223415802,
"FULLNAME": "Stellar (XLM)",
"NAME": "Stellar",
"ID": "4614",
"VOLUME24HOURTO": 5792.094432763407
},
{
"SYMBOL": "TRX",
"SUPPLY": 66752027614.8321,
"FULLNAME": "TRON (TRX)",
"NAME": "TRON",
"ID": "310829",
"VOLUME24HOURTO": 2359.528321651738
},
{
"SYMBOL": "OMG",
"SUPPLY": 140245398.245133,
"FULLNAME": "OmiseGo (OMG)",
"NAME": "OmiseGo",
"ID": "187440",
"VOLUME24HOURTO": 2188.2901753036467
},
{
"SYMBOL": "LINK",
"SUPPLY": 1000000000,
"FULLNAME": "Chainlink (LINK)",
"NAME": "Chainlink",
"ID": "309621",
"VOLUME24HOURTO": 2146.5044573269765
},
{
"SYMBOL": "BNB",
"SUPPLY": 155536713,
"FULLNAME": "Binance Coin (BNB)",
"NAME": "Binance Coin",
"ID": "204788",
"VOLUME24HOURTO": 2143.784016362084
},
{
"SYMBOL": "ZEC",
"SUPPLY": 9082156.25,
"FULLNAME": "ZCash (ZEC)",
"NAME": "ZCash",
"ID": "24854",
"VOLUME24HOURTO": 2031.047056008054
},
{
"SYMBOL": "NEO",
"SUPPLY": 100000000,
"FULLNAME": "NEO (NEO)",
"NAME": "NEO",
"ID": "27368",
"VOLUME24HOURTO": 1949.7157149607178
},
{
"SYMBOL": "OKB",
"SUPPLY": 300000000,
"FULLNAME": "Okex (OKB)",
"NAME": "Okex",
"ID": "925144",
"VOLUME24HOURTO": 1852.7903522970119
},
{
"SYMBOL": "XTZ",
"SUPPLY": 810904882.005803,
"FULLNAME": "Tezos (XTZ)",
"NAME": "Tezos",
"ID": "166390",
"VOLUME24HOURTO": 1805.5410264333902
},
{
"SYMBOL": "XMR",
"SUPPLY": 17547647.7481086,
"FULLNAME": "Monero (XMR)",
"NAME": "Monero",
"ID": "5038",
"VOLUME24HOURTO": 1689.4258261503492
},
{
"SYMBOL": "TRUE",
"SUPPLY": 100000000,
"FULLNAME": "True Chain (TRUE)",
"NAME": "True Chain",
"ID": "887527",
"VOLUME24HOURTO": 1677.3203859323
}
],
"Type": 100,
"Response": "Success",
"VolSymbol": "BTC",
"Message": "All ok",
"RateLimit": {},
"HasWarning": false
}
Parameter | Type | Description |
---|---|---|
Data | array | Data array containing top list asset by pair. |
SYMBOL | string | Crypto ticker. |
SUPPLY | int | Total supply. |
FULLNAME | string | Crypto name and ticker. |
NAME | string | Crypto name. |
ID | int | Crypto ID. |
VOLUME24HOURTO | int | Volume 24 hour to. |
Type | int | Type. |
Response | string | Response. |
VolSymbol | string | Volume ticker. |
Message | string | Message. |
RateLimit | string | Rate limit. |
HasWarning | bool | If no warnings false , otherwise true . |
Stock Market Information
Call | Description |
---|---|
GlobalStockLatestInfo | Retrieves the latest pricing and volume information for a given stock. |
GlobalStockSymbolSearch | Information for globally traded assets based on a single keyword search. Any assets relevant to the keyword search will be outputted. |
GlobalStockLatestInfo
Sample Data
{
"ticker_symbol": "AAPL"
}
Retrieves the latest pricing and volume information for a given stock.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["AAPL"]' https://api.maplenodes.com/v1/GlobalStockLatestInfo
GlobalStockLatestInfo [ticker_symbol]
Parameter | Type | Description |
---|---|---|
ticker_symbol | string | Single ticker symbol. |
Response Parameters
Sample 200 Response
{
"Global Quote": {
"01. symbol": "AAPL",
"02. open": "286.2500",
"03. high": "299.0000",
"04. low": "285.8500",
"05. price": "289.0700",
"06. volume": "60154175",
"07. latest trading day": "2020-05-01",
"08. previous close": "293.8000",
"09. change": "-4.7300",
"10. change percent": "-1.6099%"
}
}
Parameter | Type | Description |
---|---|---|
01. symbol | string | Ticker symbol. |
02. open | int | Market open price. |
03. high | int | Market daily high price. |
04. low | int | Market daily low price. |
05. price | int | Current price. |
06. volume | int | Market volume. |
07. latest trading day | string | Latest trading day. |
08. previous close | int | Previous closing price. |
09. change | int | Change in price from current to previous close. |
10. change percent | sring | Change in price percentage. |
GlobalStockSymbolSearch
Sample Data
{
"keyword": "google"
}
Information for globally traded assets based on a single keyword search. Any assets relevant to the keyword search will be outputted.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["google"]' https://api.maplenodes.com/v1/GlobalStockSymbolSearch
GlobalStockSymbolSearch [keyword]
Parameter | Type | Description |
---|---|---|
keyword | string | Search keyword. |
Response Parameters
Sample 200 Response
{
"bestMatches": [
{
"1. symbol": "GOOG",
"2. name": "Alphabet Inc.",
"3. type": "Equity",
"4. region": "United States",
"5. marketOpen": "09:30",
"6. marketClose": "16:00",
"7. timezone": "UTC-05",
"8. currency": "USD",
"9. matchScore": "0.9091"
},
{
"1. symbol": "GOOGL",
"2. name": "Alphabet Inc.",
"3. type": "Equity",
"4. region": "United States",
"5. marketOpen": "09:30",
"6. marketClose": "16:00",
"7. timezone": "UTC-05",
"8. currency": "USD",
"9. matchScore": "0.8000"
},
{
"1. symbol": "GOOGL.MIL",
"2. name": "ALPHABET CLASSE A",
"3. type": "Equity",
"4. region": "Milan",
"5. marketOpen": "09:00",
"6. marketClose": "17:30",
"7. timezone": "UTC+02",
"8. currency": "EUR",
"9. matchScore": "0.7143"
},
{
"1. symbol": "GOOGL.ARG",
"2. name": "Alphabet Inc.",
"3. type": "Equity",
"4. region": "Argentina",
"5. marketOpen": "11:00",
"6. marketClose": "17:00",
"7. timezone": "UTC-03",
"8. currency": "ARS",
"9. matchScore": "0.7143"
},
{
"1. symbol": "GOOGL.MEX",
"2. name": "Alphabet Inc.",
"3. type": "Equity",
"4. region": "Mexico",
"5. marketOpen": "08:30",
"6. marketClose": "15:00",
"7. timezone": "UTC-05",
"8. currency": "MXP",
"9. matchScore": "0.7143"
},
{
"1. symbol": "GOOG.MIL",
"2. name": "Alphabet Inc.",
"3. type": "Equity",
"4. region": "Milan",
"5. marketOpen": "09:00",
"6. marketClose": "17:30",
"7. timezone": "UTC+02",
"8. currency": "EUR",
"9. matchScore": "0.6154"
},
{
"1. symbol": "GOOG.MEX",
"2. name": "Alphabet Inc.",
"3. type": "Equity",
"4. region": "Mexico",
"5. marketOpen": "08:30",
"6. marketClose": "15:00",
"7. timezone": "UTC-05",
"8. currency": "MXP",
"9. matchScore": "0.6154"
}
]
}
Parameter | Type | Description |
---|---|---|
1. symbol | string | Ticker symbol. |
2. name | string | Company name. |
3. type | string | Type of asset. |
4. region | int | Region of asset. |
5. marketOpen | int | Time market opens. |
6. marketClose | int | Time market closes. |
7. timezone | string | Asset timezone. |
8. currency | int | Currency asset is traded in. |
9. matchScore | int | Search match percentage in decimal form. |
Utility Services
Call | Description |
---|---|
BitlyURLShortener | Shortens user provided URL via Bitly. |
CurrencyExchangeRate | Outputs the exchange rate between two currency pairs. |
BitlyURLShortener
Sample Data
{
"long_url": "https://www.google.com/"
}
Shortens user provided URL via Bitly.
Note: Ensure to include HTTP/HTTPS in the URL link or you will receive a null
response.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["https://www.google.com/"]' https://api.maplenodes.com/v1/BitlyURLShortener
BitlyURLShortener [long_url]
Parameter | Type | Description |
---|---|---|
long_url | string | URL to be shortened. |
Response Parameters
Sample 200 Response
[
{
"shortened_url": "https://bit.ly/2WWi4R8",
"long_url": "https://www.google.com/"
}
]
Parameter | Type | Description |
---|---|---|
shortened_url | string | Shortened URL. |
long_url | string | URL that was shortened. |
CurrencyExchangeRate
Sample Data
{
"currency_id1": "CAD",
"currency_id2": "USD"
}
Outputs the exchange rate between two currency pairs.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["CAD","USD"]' https://api.maplenodes.com/v1/CurrencyExchangeRate
CurrencyExchangeRate [currency_id1] [currency_id2]
Parameter | Type | Description |
---|---|---|
currency_id1 | string | Currency to compare exchange rate with. |
currency_id2 | string | Currency to compare exchange rate with. |
Response Parameters
Sample 200 Response
{
"CAD_USD": 0.709675
}
Parameter | Type | Description |
---|---|---|
exchange_rate | int | Exchange rate of currency_id1 and currency_id2. |
Weather Services
Call | Description |
---|---|
CurrentWeatherData | Retrieve weather data for a given city,country. |
CurrentWeatherData
Sample Data
{
"city_or_city,country": "Toronto,CA",
"unit_of_measurement": "metric"
}
Retrieve weather data for a given city,country.
Note: Use ISO 3166 alpha-2 country codes.
Request Parameters
Sample Request
curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["Toronto,CAD","metric"]' https://api.maplenodes.com/v1/CurrentWeatherData
CurrentWeatherData [city_or_city,country] [unit_of_measurement]
Parameter | Type | Description |
---|---|---|
city_or_city,country | string | City or City,Country. |
unit_of_measurement | string | Data measurement in metric or imperial. |
Response Parameters
Sample 200 Response
{
"coord": {
"lon": -79.42,
"lat": 43.7
},
"weather": [
{
"id": 804,
"main": "Clouds",
"description": "overcast clouds",
"icon": "04d"
}
],
"base": "stations",
"main": {
"temp": 7.51,
"feels_like": 1.26,
"temp_min": 6.67,
"temp_max": 8.33,
"pressure": 1015,
"humidity": 61
},
"visibility": 14484,
"wind": {
"speed": 6.2,
"deg": 310,
"gust": 11.3
},
"clouds": {
"all": 90
},
"dt": 1588606876,
"sys": {
"type": 1,
"id": 941,
"country": "CA",
"sunrise": 1588586703,
"sunset": 1588638220
},
"timezone": -14400,
"id": 6167865,
"name": "Toronto",
"cod": 200
}
Parameter | Type | Description |
---|---|---|
coord | Object | Coordinate data. |
lon | string | Longitude of the city. |
lat | string | Latitude of the city. |
weather | Object | Weather data. |
id | int | Weather ID. |
main | string | Main description. |
description | string | Weather description. |
icon | string | Icon ID. |
base | string | Base data. |
main | Object | Main temperature data. |
temp | int | Temperature. |
feels_like | int | Temperature including wind chill or humidex. |
temp_min | int | Temperature low. |
temp_max | int | Temperature high. |
pressure | int | Pressure. |
humidity | int | Humidity. |
visibility | int | Visibility. |
wind | Object | Wind data. |
speed | int | Speed of the wind. |
deg | int | Degree of the wind. |
clouds | Object | Cloud data. |
all | int | Clouds data. |
dt | int | dt. |
sys | Object | Sun data. |
type | int | Type. |
id | int | Sys ID. |
country | string | Country of city. |
sunrise | int | Timestamp of sunrise. |
sunset | int | Timestamp of sunset. |
timezone | int | Timezone of city. |
id | int | ID. |
name | string | City name. |
cod | int | Cod. |
Changelog
This API documentation will be continuously updated.
Updates
19-July-2024 |
---|
• Removed old endpoints |
• Updated The Graph endpoints to reflect Arbitrum |
• Added new API calls for The Graph & Celestia |
7-February-2022 |
---|
• Changed endpoints from /xrs/ to /v1/ |
7-June-2021 |
---|
• Fixed white space issue caused by new slate branch |
• Changed font to Roboto to match Maple Nodes theme |
• Updated meta tags |
• Added new API call: The Graph - IPFS |