NAV
HTTP
Need Help?

Introduction

Maple Nodes provides custom built endpoints that can be consumed in any environment. All API endpoints can be consumed through HTTP/HTTPS requests.

The Graph

Call Description
ENS View ENS name of The Graph Indexers.
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.

ENS

Sample Data

{
  "indexer_address": "0xbfe2a198cb0cdfb50fb03cd932c7387ddb0d25aa"
}

View ENS name of The Graph Indexers.

Request Parameters

Sample Request

curl -X GET https://api.maplenodes.com/graph/ens/0xbfe2a198cb0cdfb50fb03cd932c7387ddb0d25aa

/graph/ens/[indexer_address]

Parameter Type Description
indexer_address string The Graph Indexer address.

Response Parameters

Sample 200 Response

{
  "indexer": "0xbfe2a198cb0cdfb50fb03cd932c7387ddb0d25aa",
  "indexer_ens": "maplenodes",
  "beneficiary_address": "0xebc391ba182f6d8654a516a44e382cf9c9196831"
}
Parameter Type Description
indexer string Address of Indexer.
indexer_ens string ENS name of Indexer, empty if not set.
beneficiary_address string Beneficiary address of Indexer.

Indexer

Sample Data

{
  "indexer_address": "0xbfe2a198cb0cdfb50fb03cd932c7387ddb0d25aa"
}

View The Graph Indexer metrics.

Request Parameters

Sample Request

curl -X GET https://api.maplenodes.com/graph/indexer/0xbfe2a198cb0cdfb50fb03cd932c7387ddb0d25aa

/graph/indexer/[indexer_address]

Parameter Type Description
indexer_address string The Graph Indexer address.

Response Parameters

Sample 200 Response

{
  "indexer": "0xbfe2a198cb0cdfb50fb03cd932c7387ddb0d25aa",
  "indexer_name": "maplenodes",
  "total_allowable_stake": 3097775.1,
  "total_allowable_stake_usd": 6350438.95,
  "total_allocated_stake": 3098227.38,
  "total_allocated_stake_usd": 6351366.13,
  "allocation_difference": -452.28,
  "allocation_difference_usd": -927.17,
  "allocation_percent": 100.01,
  "time_last_allocation": "Wed Mar 31 05:04:38 UTC 2021",
  "time_lapsed_last_allocation": "15d 22h 4m 9s ago",
  "time_lapsed_last_allocation_raw": 1617167078,
  "time_last_parameter_change": "Tue Dec 22 19:12:15 UTC 2020",
  "time_lapsed_last_parameter_change": "114d 7h 56m 32s ago",
  "time_cooldown_remaining": "0d 0h 0m 0s",
  "pending_rewards": 14692.1,
  "pending_rewards_usd": 30118.8,
  "pending_rewards_hourly": 38.45,
  "pending_rewards_hourly_usd": 78.82,
  "pending_rewards_indexer": 13222.89,
  "pending_rewards_indexer_usd": 27106.92,
  "pending_rewards_indexer_hourly": 34.61,
  "pending_rewards_indexer_hourly_usd": 70.95,
  "pending_rewards_delegator": 1469.21,
  "pending_rewards_delegator_usd": 3011.88,
  "pending_rewards_delegator_hourly": 3.85,
  "pending_rewards_delegator_hourly_usd": 7.89,
  "total_query_rebates": 69.55,
  "total_query_rebates_usd": 142.58,
  "indexer_stake": 2080659.78,
  "indexer_stake_usd": 4265352.55,
  "indexer_reward_cut": 90,
  "indexer_rewards": 212042.01,
  "indexer_rewards_usd": 434686.12,
  "indexer_reward_effective_cut": 69.54,
  "indexer_query_cut": 80,
  "indexer_query_fees": 244.33,
  "indexer_query_fees_usd": 500.88,
  "indexer_query_rebates": 55.64,
  "indexer_query_rebates_usd": 114.06,
  "total_delegated": 1017115.32,
  "total_delegated_usd": 2085086.41,
  "delegator_reward_cut": 10,
  "delegator_rewards": 23560.22,
  "delegator_rewards_usd": 48298.45,
  "delegator_query_cut": 20,
  "delegator_query_fees": 13.91,
  "delegator_query_fees_usd": 28.52,
  "total_rewards": 235602.24,
  "total_rewards_usd": 482984.59,
  "grt_usd": 2.05
}
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_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 Unix time (seconds) since last allocation.
time_last_parameter_change string Timestamp (UTC) of last parameter change.
time_lapsed_last_parameter_change string The time that has elapsed since last parameter change.
time_cooldown_remaining string Time remaining before Indexer is allowed to change parameters again.
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.
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/indexers/

/graph/indexers/

This call does not take parameters.

Response

Sample 200 Response

[
  {
    "indexer": "0x011bdfea664ece919d895d174f57331460056236",
    "indexer_name": "stakingcapital2"
  },
  {
    "indexer": "0x025fe57b265ed74d3ef915297ba5b9b4f2a8474e",
    "indexer_name": "glad"
  },
  {
    "indexer": "0x0280464494b1c4ffd18a89ec3b3703fbc28b7b6d",
    "indexer_name": ""
  },
  {
    "indexer": "0x039b47ea916783f78d943d94de700a17f40ae6d4",
    "indexer_name": "dokiacapital"
  },
  {
    "indexer": "0x03db85e86779febdd96d96ba43ac48382fb1a88d",
    "indexer_name": "chainlayer"
  },
  {
    "indexer": "0x040a8ae130b5fbac973074aa1bd2c69773c5fbc2",
    "indexer_name": "inflex"
  },
  {
    "indexer": "0x06590a641dc3eb43f2cebe435576389f209116da",
    "indexer_name": ""
  },
  {
    "indexer": "0x07051463ca2414f716d37da8cdbcdb5abe4cc239",
    "indexer_name": "allyoucanstake"
  },
  {
    "indexer": "0x0b751463e07d90f465573d3b5dd45e1afafd4cd0",
    "indexer_name": "index-africa"
  },
  {
    "indexer": "0x0ceb7aa784616f4cd5d581ed5d1182bc4340b460",
    "indexer_name": ""
  },
  {
    "indexer": "0x0da2b8ead0975f707aa3bad4c1ae4e705e4b3b53",
    "indexer_name": ""
  },
  {
    "indexer": "0x147e0980483f71a235521335a3ef79338ca11d28",
    "indexer_name": ""
  },
  {
    "indexer": "0x15184aed586140527593b32db21bfbb5b53a02c6",
    "indexer_name": ""
  },
  {
    "indexer": "0x163a2ebf98ef202da5834a33f7ce98098a0b7874",
    "indexer_name": "lexprime"
  },
  {
    "indexer": "0x1692a8710dcf0dce24bd34c028479176b97ee9ef",
    "indexer_name": "stake-machine"
  },
  {
    "indexer": "0x17d7dca770ef183355b202435e1ce80a11b53886",
    "indexer_name": ""
  },
  {
    "indexer": "0x1873a56a404b21df3c69c0c105dd65b4e43d88e6",
    "indexer_name": ""
  },
  {
    "indexer": "0x19755b22a68bb72e649f8faafdbb549ed3ea75d2",
    "indexer_name": ""
  },
  {
    "indexer": "0x19fbac0891042be71ce60321a17720358575f580",
    "indexer_name": "stakeservice"
  },
  {
    "indexer": "0x1a6a74648ff8146f9b7df3a7e322506612e13e6a",
    "indexer_name": "easy2stake-com"
  },
  {
    "indexer": "0x1a99dd7d916117a523f3ce6510dcfd6bceab11e7",
    "indexer_name": "p-ops"
  },
  {
    "indexer": "0x1b536a13d1a18eb51bb216cf69aa89fcd0b1badc",
    "indexer_name": ""
  },
  {
    "indexer": "0x1c96a40b413fe428cb86729ebe8c38f559ee7202",
    "indexer_name": ""
  },
  {
    "indexer": "0x24a17f3ce0b06d8da3d058dec91e36bb867cbe65",
    "indexer_name": "stakingcapital3"
  },
  {
    "indexer": "0x27ac40b9198659ce99eef1890d853a40560c9425",
    "indexer_name": ""
  },
  {
    "indexer": "0x27ca9cf008a217e828b4b39945034ff8450730d1",
    "indexer_name": "alphavirtual"
  },
  {
    "indexer": "0x2890d1b13894258ab3d477729d62d52b43754f9b",
    "indexer_name": ""
  },
  {
    "indexer": "0x289d2026a6a09c20261303775b9fca9494e7ab1f",
    "indexer_name": ""
  },
  {
    "indexer": "0x293d739d1a683b3943f14ef55b1b0efc06b9be54",
    "indexer_name": ""
  },
  {
    "indexer": "0x2c313e9fd1794685d2052af79457c858813b108f",
    "indexer_name": ""
  },
  {
    "indexer": "0x2d042d8a78cdaaa674b0aec5538e66a620eef75f",
    "indexer_name": ""
  },
  {
    "indexer": "0x31ebc9f2fff890d84133cb86491942dc8fa70c5e",
    "indexer_name": ""
  },
  {
    "indexer": "0x3217b1a2129941669ffb1aa9f962dc8a686ffd47",
    "indexer_name": ""
  },
  {
    "indexer": "0x34cadf09dbf50a39d1a68b87d7763db3961ef483",
    "indexer_name": ""
  },
  {
    "indexer": "0x34f38671e9ffb8464a268752680444feb8139feb",
    "indexer_name": "rampdefi"
  },
  {
    "indexer": "0x3622522a5eb9bba3417ec3d2a437f9d3c5caacee",
    "indexer_name": ""
  },
  {
    "indexer": "0x362717d3fa1bfe457535b9b716f450b95a858217",
    "indexer_name": ""
  },
  {
    "indexer": "0x365507a4eef5341cf00340f702f7f6e74217d96e",
    "indexer_name": "graphops"
  },
  {
    "indexer": "0x371be11579c15a0a81b50e06087f363b27e14c36",
    "indexer_name": "rampdefi3"
  },
  {
    "indexer": "0x371bff423d9cd52abc79959a52dd8a5ee7216112",
    "indexer_name": ""
  },
  {
    "indexer": "0x38e6b1dc04087f69e69f10d7318643accc9854f5",
    "indexer_name": ""
  },
  {
    "indexer": "0x39839abed87475422c5353256d17e08395c3af6b",
    "indexer_name": "liray-indexer"
  },
  {
    "indexer": "0x399235a909238c4e7915e7ce8a5f2898456fd313",
    "indexer_name": ""
  },
  {
    "indexer": "0x3eb3297b0e34a7897aa004b66a354053425f7894",
    "indexer_name": "chainodetech"
  },
  {
    "indexer": "0x4140d3d0086fce37ebadd965dff88e12cf78b1fb",
    "indexer_name": ""
  },
  {
    "indexer": "0x4167eb613d784c910f5dc0f3f0515d61ec6ec8df",
    "indexer_name": "suntzu-indexer"
  },
  {
    "indexer": "0x41cf9718b66761d121b407f2a139b4f5b22fc9cd",
    "indexer_name": ""
  },
  {
    "indexer": "0x427f071e335bfa32241bbfa7f240f24a8a46f292",
    "indexer_name": "mind-heart-soul"
  },
  {
    "indexer": "0x43d1f66f18ea1c5ad98dc4a059502663987be19b",
    "indexer_name": ""
  },
  {
    "indexer": "0x43eb454e8715164bd41deddaec3d3e2a7fbcd7b4",
    "indexer_name": ""
  },
  {
    "indexer": "0x4437e367cc68d87675148a9e4a1f052f0359c880",
    "indexer_name": "mind-heart-soul"
  },
  {
    "indexer": "0x453b5e165cf98ff60167ccd3560ebf8d436ca86c",
    "indexer_name": ""
  },
  {
    "indexer": "0x45874192929530cd4e3dd0624df05bee3c13974f",
    "indexer_name": "grassets-tech-1"
  },
  {
    "indexer": "0x4595855ed2d498fc2cbd7f415e7f262e2328d950",
    "indexer_name": ""
  },
  {
    "indexer": "0x45ac0ac13cb89e285282b1034e6eedcffb42cc2d",
    "indexer_name": ""
  },
  {
    "indexer": "0x474e571ab6dd77489ec3c7ddf9cbc893fcba684c",
    "indexer_name": ""
  },
  {
    "indexer": "0x48b5687f0595e2a4d581dc72305fbae214345d07",
    "indexer_name": ""
  },
  {
    "indexer": "0x48eecbc147a4b97e30fd03ef738b9305812e0287",
    "indexer_name": ""
  },
  {
    "indexer": "0x4955ec78868e90572c7d315a3c22238451fb7923",
    "indexer_name": "rampdefi4"
  },
  {
    "indexer": "0x49bc9eccd93cbfa6b76dcf33b3ba9a36aab05b36",
    "indexer_name": ""
  },
  {
    "indexer": "0x4ac761592d1f948058843121133d048dc7dfc7c0",
    "indexer_name": ""
  },
  {
    "indexer": "0x4b1c684dc4ad3c77cbaae5f16051c269b79116d2",
    "indexer_name": ""
  },
  {
    "indexer": "0x4bbae81dc703e33cb290c069afac427d96aba895",
    "indexer_name": "rampdefi2"
  },
  {
    "indexer": "0x4bbfbd1320093858d877ab0c8cd91ef0ce065318",
    "indexer_name": "alphavirtual"
  },
  {
    "indexer": "0x4bc2e066fb0857493a1fbe48462bb34ff6ea731f",
    "indexer_name": "dappquery"
  },
  {
    "indexer": "0x4bd07ae84869eaf4413c1a9873a534109f40cc3a",
    "indexer_name": ""
  },
  {
    "indexer": "0x4c059ccb00e504b4472f8fbb0d2556f165bdbb3b",
    "indexer_name": ""
  },
  {
    "indexer": "0x4d6a8776a164776c93618233a0003e8894e7e6c2",
    "indexer_name": "stakedus"
  },
  {
    "indexer": "0x4d7fdee1f02b7864658d7bc8c650b8901d033b9f",
    "indexer_name": ""
  },
  {
    "indexer": "0x4dc44f5906f593da2ac28be1d22c4ee9cd556420",
    "indexer_name": ""
  },
  {
    "indexer": "0x4fedde33607cfda2c82a999accb427d1170987d9",
    "indexer_name": "oraclegen"
  },
  {
    "indexer": "0x50a786a68320fcfb276ef196dee6f4cdae53440e",
    "indexer_name": "stakesystems"
  },
  {
    "indexer": "0x50fda0a43d6770a927ebe2909fce1cdcba417801",
    "indexer_name": "masternode24-de"
  },
  {
    "indexer": "0x532433d8f9ead9a35b10929d024b4cccb8c12321",
    "indexer_name": "lowfeevalidation"
  },
  {
    "indexer": "0x55f3dcdaf0b73f7f0c761a9070d8865f37986e2c",
    "indexer_name": "makingcash-hosted-by-ryabina"
  },
  {
    "indexer": "0x57c6ca1effe6c676d93225a122f41eb24708edd9",
    "indexer_name": ""
  },
  {
    "indexer": "0x5a8904be09625965d9aec4bffd30d853438a053e",
    "indexer_name": "p2p-org"
  },
  {
    "indexer": "0x5ea935a6164629dd9c0f7f1e3b79c2d041108e26",
    "indexer_name": ""
  },
  {
    "indexer": "0x60165e465b242d051de4ebadfe0cf55b13f04dc5",
    "indexer_name": ""
  },
  {
    "indexer": "0x6125ea331851367716bee301ecde7f38a7e429e7",
    "indexer_name": "figment-prime-2"
  },
  {
    "indexer": "0x61590afb7e2c612ef8c441356ee82db8cd90a5d6",
    "indexer_name": ""
  },
  {
    "indexer": "0x62a0bd1d110ff4e5b793119e95fc07c9d1fc8c4a",
    "indexer_name": "nuviba"
  },
  {
    "indexer": "0x632484e0411a40ca7f2552defb70605ec3e58676",
    "indexer_name": ""
  },
  {
    "indexer": "0x63c560997b8338f2b033f3ffdcc0f7c680feec45",
    "indexer_name": "inflex"
  },
  {
    "indexer": "0x643c5f5223ba68e06766b194b274c4d90dd42dc8",
    "indexer_name": ""
  },
  {
    "indexer": "0x66578a314303c4547f6b72ecf21ccb449879be32",
    "indexer_name": ""
  },
  {
    "indexer": "0x671bc7a0ffa02b0ee90ee03bcd11915df011503a",
    "indexer_name": "nodehodler-com"
  },
  {
    "indexer": "0x6879bbfcff0e54e62b899681ea52e74bd9b29fe4",
    "indexer_name": ""
  },
  {
    "indexer": "0x696569606ed7e07a3a5f0720f2ece96a79135762",
    "indexer_name": "stakesquid-3"
  },
  {
    "indexer": "0x6980fd6c85a98df8180123951e46d673b456699c",
    "indexer_name": ""
  },
  {
    "indexer": "0x6ac85b9d834b51b14a7b0ed849bb5199e04c05c5",
    "indexer_name": "figment-prime"
  },
  {
    "indexer": "0x6dae84e4aed2c8708707b358e278408c2deb0397",
    "indexer_name": "agenetwork"
  },
  {
    "indexer": "0x7030613f84334149c3d1324497c96062c01e8459",
    "indexer_name": "kytzu"
  },
  {
    "indexer": "0x720a98087160bfdb282f695abe6f9ac966b03d43",
    "indexer_name": "grassets-tech-2"
  },
  {
    "indexer": "0x72acbecf3013d7b27421185d3bf369520bf552c8",
    "indexer_name": ""
  },
  {
    "indexer": "0x75555d4115fe3b00a90811822ff77b9f97121be2",
    "indexer_name": ""
  },
  {
    "indexer": "0x75a77853c1bf2490bc39c737581c18ca1dd13231",
    "indexer_name": ""
  },
  {
    "indexer": "0x7697a886fc3b71a8a88487019337a6bbe5838f1a",
    "indexer_name": ""
  },
  {
    "indexer": "0x76e84025978a0c16fc7ba483718b667388f2973c",
    "indexer_name": "minatofund"
  },
  {
    "indexer": "0x79c813f6b6a84b4ab7258db617612f06bde25498",
    "indexer_name": "01node-indexer"
  },
  {
    "indexer": "0x7a1247bb8d8d139c0859b439eb44f8480c8ffdc5",
    "indexer_name": ""
  },
  {
    "indexer": "0x7ab4cf25330ed7277ac7ab59380b68eea68abb0e",
    "indexer_name": "stakingfacilities"
  },
  {
    "indexer": "0x7b8f93130b7c610fb102f1e82e23ad978ed81702",
    "indexer_name": ""
  },
  {
    "indexer": "0x7ca0ee4a792f4da7b6aaf4c082b234259de61112",
    "indexer_name": "chainflow-indexer"
  },
  {
    "indexer": "0x7ddf0c8cb0167870bf7cc5368792c93aeeb15430",
    "indexer_name": ""
  },
  {
    "indexer": "0x7ed9d36539f349808c42187ed4e1753d5947db7a",
    "indexer_name": "kukis-global"
  },
  {
    "indexer": "0x7fa7d0212ac64b48efaf62055b9d2d274d14403f",
    "indexer_name": ""
  },
  {
    "indexer": "0x7fd833cf8775e9c3524b8be925723345164964be",
    "indexer_name": "lunanova"
  },
  {
    "indexer": "0x7fd9cada29b91bad49e49481c0288ba045cf8713",
    "indexer_name": ""
  },
  {
    "indexer": "0x81dd719fd7efb19d12740b8057c0e363bee35b4a",
    "indexer_name": "bestake"
  },
  {
    "indexer": "0x8211c6b4c8dc1c252fccab001ec78af87cad87ed",
    "indexer_name": ""
  },
  {
    "indexer": "0x83e1a1853079524443742089d8a4e02470e76250",
    "indexer_name": ""
  },
  {
    "indexer": "0x85fe868adf7f5950b052469075556fb207e5372d",
    "indexer_name": "framework-labs"
  },
  {
    "indexer": "0x88b2e385e95ffcd7ae07629a18d95b7711f4166a",
    "indexer_name": ""
  },
  {
    "indexer": "0x8a1729fe84c53c231c7ae53a5bec3f6e9953cb4b",
    "indexer_name": "graph-node-1-cp0x-hosted-by-ryabina"
  },
  {
    "indexer": "0x8b7663dd451c951f39e541188d9f7d9419e94421",
    "indexer_name": "iukni"
  },
  {
    "indexer": "0x8d632dfc2454d624910fe982e85a5b15d2ae93c5",
    "indexer_name": ""
  },
  {
    "indexer": "0x8e297141f9dc76f4d71741da1a1e47294cf0fde2",
    "indexer_name": "fattox"
  },
  {
    "indexer": "0x8ed9245a00d1f1edc664f32c33c3115f5b2c9a90",
    "indexer_name": ""
  },
  {
    "indexer": "0x8f9793029b66325b70fffbfdf2b04d8491682466",
    "indexer_name": ""
  },
  {
    "indexer": "0x901073d364f6af645648dc81d7f90e7aab47142d",
    "indexer_name": ""
  },
  {
    "indexer": "0x914cefe3b3e68cdf813c4b947ce2db76c28c2287",
    "indexer_name": ""
  },
  {
    "indexer": "0x9154937dc144c87020a7974fbe9b0aa17b69cdfd",
    "indexer_name": ""
  },
  {
    "indexer": "0x9238584c74e5fa445a8f72a4d4ef4699dd783852",
    "indexer_name": "ryabina"
  },
  {
    "indexer": "0x9498abb64b27d1aac5206c09c0eacb445d992e4c",
    "indexer_name": ""
  },
  {
    "indexer": "0x978cd3207d0cf5a89003d85c2913bc9be120c31f",
    "indexer_name": ""
  },
  {
    "indexer": "0x97a13b2969dc8268a24b7997ed64ab8339631cf4",
    "indexer_name": ""
  },
  {
    "indexer": "0x9b1da82ee4d269eeeb4977e092b9ad2d7970c096",
    "indexer_name": ""
  },
  {
    "indexer": "0x9b7d53ac71f04867b80a97dcd919e1235dc6f398",
    "indexer_name": ""
  },
  {
    "indexer": "0x9f491ce41ffa24a074176106ed9c59b0ae504427",
    "indexer_name": ""
  },
  {
    "indexer": "0xa2c46e4fa487f954632e34d479c6047a8214f49d",
    "indexer_name": ""
  },
  {
    "indexer": "0xa3276e7ab0a162f6a3b5aa6b3089accbaa65d12e",
    "indexer_name": ""
  },
  {
    "indexer": "0xa3eb195c91c428d48c7ce24301f0dfbaf972b5d7",
    "indexer_name": ""
  },
  {
    "indexer": "0xa543abe0ea61b4bbbca3f402442bda4bf7d45992",
    "indexer_name": "swiftstaking"
  },
  {
    "indexer": "0xa92bd8c16ae3266cf3b80ba0152735e9a8460ce7",
    "indexer_name": ""
  },
  {
    "indexer": "0xa959b5afe73c6faa803541b5c4edc0492dfda294",
    "indexer_name": ""
  },
  {
    "indexer": "0xaa3b07b1251d7961baf3ce05b101b82bd0ebf8d5",
    "indexer_name": "nebulas-nova"
  },
  {
    "indexer": "0xab55c2d923549317bf7ed7b9f74271e4a1b9ed8f",
    "indexer_name": ""
  },
  {
    "indexer": "0xac104dba73822c575713e1ecb06da67af01c54b3",
    "indexer_name": ""
  },
  {
    "indexer": "0xac8c69428414206b220a5ed20b351e385605b9ff",
    "indexer_name": "intrepido"
  },
  {
    "indexer": "0xaf96dd8fbc94d207bb91181e1e92f34d14f8aea5",
    "indexer_name": ""
  },
  {
    "indexer": "0xb06071394531b63b0bac78f27e12dc2beaa913e4",
    "indexer_name": "protofire"
  },
  {
    "indexer": "0xb393ff3cd1f70fecf9cf8b67f27780fbea0d084f",
    "indexer_name": "joystick"
  },
  {
    "indexer": "0xb3e2fe4e6673709613c22c63d3d7326f3bfa15cc",
    "indexer_name": "stakesystems"
  },
  {
    "indexer": "0xb438830f11820a5e9cdde1363bc49bde2da67f1f",
    "indexer_name": "gunray"
  },
  {
    "indexer": "0xb8f0f81df338338a2672f58e90c2f4b5e45ffacc",
    "indexer_name": ""
  },
  {
    "indexer": "0xbaf3c5958f0c073feb9312816edca59fe070a2d7",
    "indexer_name": ""
  },
  {
    "indexer": "0xbb784d9b398271b7a64f975bebde869409691915",
    "indexer_name": "graph-node-1-cp0x-hosted-by-ryabina"
  },
  {
    "indexer": "0xbbf36ec9311d60513c09f952d7530c2ff37e86b4",
    "indexer_name": ""
  },
  {
    "indexer": "0xbd1a939b4e4125254013a0c4573252be2fd9d207",
    "indexer_name": ""
  },
  {
    "indexer": "0xbe013243e22a9a9752a53f232b2fc7907a5d35ae",
    "indexer_name": ""
  },
  {
    "indexer": "0xbe9d7c691792937ca7e2535652886ff390cc5b86",
    "indexer_name": "lexprime"
  },
  {
    "indexer": "0xbf4af02f7855c7ead52d037349b7a76e48ed47a9",
    "indexer_name": "waynewayner"
  },
  {
    "indexer": "0xbfe2a198cb0cdfb50fb03cd932c7387ddb0d25aa",
    "indexer_name": "maplenodes"
  },
  {
    "indexer": "0xc36157756ea4838cf882edab9dd94325c38f2edc",
    "indexer_name": ""
  },
  {
    "indexer": "0xc430be492ddeb6e761dbbd0e08bafe99f5064d90",
    "indexer_name": "wavefive"
  },
  {
    "indexer": "0xc60d0c8c74b5d3a33ed51c007ebae682490de261",
    "indexer_name": "figment-lemniscap"
  },
  {
    "indexer": "0xc9348dcaef652791033a22f79a2024363e23d32b",
    "indexer_name": ""
  },
  {
    "indexer": "0xc94a2669f719f792f166800fb6ef00fb3a7f5bec",
    "indexer_name": ""
  },
  {
    "indexer": "0xc9899dfdca2b2ef3972ce25e3f1ba0b05cb457b6",
    "indexer_name": ""
  },
  {
    "indexer": "0xcb22a8ce581d04fef99b81ec5a60725070a3e8c4",
    "indexer_name": "legiojuve"
  },
  {
    "indexer": "0xcba3cbd284108e1ad5942e0a6b2c75a030a9d379",
    "indexer_name": ""
  },
  {
    "indexer": "0xcc49c102b09addf780816b9989d95c873032cf88",
    "indexer_name": ""
  },
  {
    "indexer": "0xcd09fc5fc328dfeb2792248b03fee9a0c0b216aa",
    "indexer_name": ""
  },
  {
    "indexer": "0xce9df315e4780fed7894bcbcbfe2e34f0f804df1",
    "indexer_name": ""
  },
  {
    "indexer": "0xd11e05240a50e2eedb03e72d4c9c6465bc05f2a4",
    "indexer_name": "bitnordic"
  },
  {
    "indexer": "0xd11eb5db7cfbb9ecae4b62e71ec0a461f6baf669",
    "indexer_name": ""
  },
  {
    "indexer": "0xd133fd8e0607f5d82c91626140495ea0a31d0398",
    "indexer_name": ""
  },
  {
    "indexer": "0xd22c1c1a1fc452e3312489f1e89676e93c3323f0",
    "indexer_name": "stakesquid-3"
  },
  {
    "indexer": "0xd3a3fa4b73e5007a8adef6ccdfc8d05c06a76035",
    "indexer_name": ""
  },
  {
    "indexer": "0xd7205e8054a6778e383d9afde80fd702db41c7fd",
    "indexer_name": "inotel"
  },
  {
    "indexer": "0xd8410a44041e0a8e758e496113dfb42bef4ed3bc",
    "indexer_name": "hashquark-indexer"
  },
  {
    "indexer": "0xd8f20ebdc2568bc404c66e3745b2050c392022fc",
    "indexer_name": ""
  },
  {
    "indexer": "0xd93456bf656436e66a8e0a8835c43a6f59afbb37",
    "indexer_name": ""
  },
  {
    "indexer": "0xd9c7cdf09d868467d9f94f885dd68e850e278118",
    "indexer_name": "cryptosniffers"
  },
  {
    "indexer": "0xdc81f90ccdd72ce4239d741a7ed9c16006dce73b",
    "indexer_name": ""
  },
  {
    "indexer": "0xddc39dceb6d8fb94d8a9b59cf3bf9a1e7ae19034",
    "indexer_name": "moonlime"
  },
  {
    "indexer": "0xe06899d681922247973437540323d384ae4b3928",
    "indexer_name": ""
  },
  {
    "indexer": "0xe0c1af3235ecee2c085ead8e918cd394986d2303",
    "indexer_name": ""
  },
  {
    "indexer": "0xe183718f4a2a8cfc7fde85dc0a36cf64e5657a14",
    "indexer_name": ""
  },
  {
    "indexer": "0xe2571c87f1433ea06be389e427af2a17bfd37fc0",
    "indexer_name": ""
  },
  {
    "indexer": "0xe6368e677871b288294536c8fe6cb1bbeb19f7a2",
    "indexer_name": ""
  },
  {
    "indexer": "0xe758697c5fc77f6b64bcf54191c08ad051bbdc4b",
    "indexer_name": ""
  },
  {
    "indexer": "0xe7738d5679b54781a5482baa48dadfde624ed7d5",
    "indexer_name": ""
  },
  {
    "indexer": "0xe7a694696a4d11ac0b7ab2dcb99a7fcf200eb00b",
    "indexer_name": "4block-team"
  },
  {
    "indexer": "0xe8832ba6aaf83d80d9e7578415e97576093f4d9f",
    "indexer_name": ""
  },
  {
    "indexer": "0xe995eff16391a874ebe815e4f017b034e673d930",
    "indexer_name": ""
  },
  {
    "indexer": "0xeb8ca82006e0c0fb16cf9fc42e15bf3e9cdf73f9",
    "indexer_name": ""
  },
  {
    "indexer": "0xed093fca388c1fc8ccc77c512ed167b2684e7966",
    "indexer_name": ""
  },
  {
    "indexer": "0xefd8cd2688e270ba60719762d2cc1e6c2e616a2c",
    "indexer_name": "syncnode-indexer"
  },
  {
    "indexer": "0xf304928be241aaa4d3bc6b95328300b5691aab9e",
    "indexer_name": "glad"
  },
  {
    "indexer": "0xf3f182e859f789af8d6c2223d15c691471c79a2b",
    "indexer_name": "blocksteady"
  },
  {
    "indexer": "0xf44964c13b8345302d4a9dfa329c6a002cfc0daf",
    "indexer_name": ""
  },
  {
    "indexer": "0xf4a097ce3a4efbd1748b2ef2076813961e4e6fa7",
    "indexer_name": ""
  },
  {
    "indexer": "0xf4e5f4e0f8ec4d6235bd2fb0443058584ebffbff",
    "indexer_name": "stakingcapital"
  },
  {
    "indexer": "0xf62de2a9d8b8033a5b66f497dca1bd91080316fb",
    "indexer_name": "elerium115"
  },
  {
    "indexer": "0xf7a36339f75ffaf058be67fd2a1764fb84eb5d87",
    "indexer_name": "delegatorsclub"
  },
  {
    "indexer": "0xf8ea1030a4fbc2c55bee9b297492888633947b4d",
    "indexer_name": ""
  },
  {
    "indexer": "0xfb5b40098cdfec1564ae5b94d4deed116b887d08",
    "indexer_name": ""
  },
  {
    "indexer": "0xfc34b8b6ae8fc85a11fcac84fe0713407e23ac0d",
    "indexer_name": ""
  },
  {
    "indexer": "0xfd12a5a7bc7f2eb4904a8177418dbb0bf094ba16",
    "indexer_name": "chorusone"
  },
  {
    "indexer": "0xfd4b9c44ee7afb7f98df3dda40aead6acd9f41f4",
    "indexer_name": ""
  }
]
Parameter Type Description
indexers Array List of all indexers on the mainnet network.
indexer string Address of Indexer.
indexer_name string ENS name of Indexer.

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/network

/graph/network

This call does not take parameters.

Response

Sample 200 Response

{
  "total_supply": 10077060371.81,
  "indexer_stake": 693995498.73,
  "allocated_stake": 2690702861.08
}
Parameter Type Description
total_supply int Graph token supply.
indexer_stake int Total amount of GRT staked in the staking contract.
allocated_stake int Total GRT currently in allocation.

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.

Gaming Services

Call Description
BlackJack Play a round of BlackJack.
BlackJackHIT Hit on a BlackJack round id.
BlackJackSTAND Stand on a BlackJack round id.

BlackJack

Play a round of BlackJack. Rounds expire after 30 minutes of no action. Limited to 1000 concurrent rounds. BlackJack splitting is not currently supported.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '[]' https://api.maplenodes.com/v1/BlackJack

BlackJack

This call does not take parameters.

Response

Sample 200 Response

{
  "dealer": "8,?",
  "player": "10,6 [16]",
  "round_id": "464",
  "action": "HIT or STAND?"
}
Parameter Type Description
dealer string Dealers 1st draw hand.
player string Players 1st draw hand.
round_id int The round id.
action string Action to hit or stand.

BlackJackHIT

Sample Data

{
  "round_id": "298"
}

BlackJack hit on the given round id. Hit once or multi-hit until desired player hand.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["464"]' https://api.maplenodes.com/v1/BlackJackHIT

BlackJackHIT [round_id]

Parameter Type Description
round_id int The round id.

Response Parameters

Sample 200 Response

{
  "dealer": "8,3 [11]",
  "player": "10,6,8 [24]",
  "round_id": "464",
  "message": "BUST, you lose!"
}
Parameter Type Description
dealer string Dealers 1st draw hand.
player string Players current hand.
round_id int The round id.
action string Action to HIT or STAND.

BlackJackSTAND

Sample Data

{
  "round_id": "298"
}

BlackJack stand on the given round id. Dealer will reveal the hand, and a winner will be declared. Round id is automatically deleted post BlackJack stand.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["256"]' https://api.maplenodes.com/v1/BlackJackSTAND

BlackJackSTAND [round_id]

Parameter Type Description
round_id int The round id.

Response Parameters

Sample 200 Response

{
  "dealer": "A,J [21]",
  "player": "2,5,8 [15]",
  "round_id": "256",
  "message": "You lose!"
}
Parameter Type Description
dealer string Dealers final hand.
player string Players final hand.
round_id int The round id.
message string Winner or loser or tied.

Messaging Services

Call Description
TrollBox View TrollBox chat.
TrollBoxMsg Send message to the TrollBox chat.
TwilioSMSStatus View delivery status information of any SMS sent.
TwilioSendSMS Send SMS message.

TrollBox

View TrollBox chat.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '[]' https://api.maplenodes.com/v1/TrollBox

TrollBox

This call does not take parameters.

Response

Sample 200 Response

[
  {
    "date": "1585609790",
    "alias": "aderks",
    "message": "Welcome to Blocknet's XCloud TrollBox"
  },
  {
    "date": "1585610004",
    "alias": "aderks",
    "message": "Send messages through wallet console, CLI, or HTTP"
  },
  {
    "date": "1585610031",
    "alias": "aderks",
    "message": "Max message count is 200. When 200 hits, the oldest message will be removed as new messages come in."
  },
  {
    "date": "1585610052",
    "alias": "aderks",
    "message": "Alias can be whoever you want to be."
  },
  {
    "date": "1585610070",
    "alias": "aderks",
    "message": "Ensure you message is in quotations!"
  },
  {
    "date": "1585610084",
    "alias": "super_anon",
    "message": "Hi there"
  },
  {
    "date": "1585674897",
    "alias": "aderks",
    "message": "testing here"
  },
  {
    "date": "1585675488",
    "alias": "anon",
    "message": "hi there, how's it going"
  }
]
Parameter Type Description
timestamp string Timestamp of message.
alias string Username alias.
message string Message string.

TrollBoxMsg

Sample Data

{
  "alias": "anon",
  "message": "Hi there, testing things out!"
}

Send message to the TrollBox chat. View chat via TrollBox.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["anon","Hi there, testing things out!"]' https://api.maplenodes.com/v1/TrollBoxMsg

TrollBoxMsg [alias] ["message"]

Parameter Type Description
alias string Username alias.
message string Message to send to the TrollBox chat.

Response Parameters

Sample 200 Response

{
  "date": "1588727785",
  "alias": "anon",
  "message": "Hi there, testing things out!"
}
Parameter Type Description
timestamp string Timestamp of message.
alias string Username alias.
message string Message string.

TwilioSMSStatus

Sample Data

{
  "sms_id": "SM8f39577bd098429f853a48e6b898471f"
}

View delivery status information of any SMS sent.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["SM8f39577bd098429f853a48e6b898471f"]' https://api.maplenodes.com/v1/TwilioSMSStatus

TwilioSMSStatus [sms_id]

Parameter Type Description
sms_id string Unique ID per SMS.

Response Parameters

Sample 200 Response

[
  {
    "sms_id": "SM8f39577bd098429f853a48e6b898471f",
    "date_created": "Sat, 15 Jun 2019 02:30:27 +0000",
    "date_updated": "Sat, 15 Jun 2019 02:30:28 +0000",
    "status": "delivered",
    "date_sent": "Sat, 15 Jun 2019 02:30:27 +0000"
  }
]
Parameter Type Description
sms_id string Unique ID per SMS.
date_created string Date timestamp of SMS creation.
date_updated string Date timestamp of last status update.
status string Status of outgoing message.
date_sent string Date timestamp of delivered SMS.

TwilioSendSMS

Sample Data

{
  "to_phone_number": "+15551234567",
  "message": "Hi there, testing things out!"
}

Send SMS message.

Note: Message body needs to be encased in double quotes.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["+15551234567","Hi there, testing things out!"]' https://api.maplenodes.com/v1/TwilioSendSMS

TwilioSendSMS [to_phone_number] ["message"]

Parameter Type Description
to_phone_number string Phone number using “+” and country code in E.164 format.
message string Message body.

Response Parameters

Sample 200 Response

[
  {
    "sms_id" : "SM8f39577bd098429f853a48e6b898471f",
    "date_created" : "Sat, 15 Jun 2019 02:30:27 +0000",
    "status" : "queued",
    "error_code" : null,
    "error_message" : null,
    "error_help" : null
  }
]
Parameter Type Description
sms_id string Unique ID per SMS.
date_created string Date timestamp of SMS creation.
status string Status of outgoing message.
error_code string Twilio error code.
error_message string Error message.
error_help string URL for error resolution.

Social Media Services

Call Description
4chanBoards All available 4chan boards.
4chanThreadViewer 4chan thread from a specified board.
4chanThreadViewerPrice 4chan thread from a specified board with pricing information of a specified crypto ticker based off the original post creation time.
4chanThreads 4chan threads from a specified board.
TwitterSearch Searches Twitter for tweets based on user inputs. Search is limited to 1 week history.

4chanBoards

All available 4chan boards.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '[]' https://api.maplenodes.com/v1/4chanBoards

4chanBoards

This call does not take parameters.

Response

Sample 200 Response

{
  "boards": [
    {
      "board": "3",
      "title": "3DCG",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/3/ - 3DCG" is 4chan's board for 3D modeling and imagery.",
      "is_archived": 1
    },
    {
      "board": "a",
      "title": "Anime & Manga",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/a/ - Anime & Manga" is 4chan's imageboard dedicated to the discussion of Japanese animation and manga.",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1
    },
    {
      "board": "aco",
      "title": "Adult Cartoons",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/aco/ - Adult Cartoons" is 4chan's imageboard for posting western-styled adult cartoon artwork.",
      "is_archived": 1
    },
    {
      "board": "adv",
      "title": "Advice",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/adv/ - Advice" is 4chan's board for giving and receiving advice. ",
      "is_archived": 1
    },
    {
      "board": "an",
      "title": "Animals & Nature",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/an/ - Animals & Nature" is 4chan's imageboard for posting pictures of animals, pets, and nature.",
      "is_archived": 1
    },
    {
      "board": "asp",
      "title": "Alternative Sports & Wrestling",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/asp/ - Alternative Sports & Wrestling" is 4chan's imageboard for the discussion of alternative and extreme sports such as wrestling and paintball.",
      "is_archived": 1
    },
    {
      "board": "b",
      "title": "Random",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 2097152,
      "max_webm_filesize": 2097152,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 150,
      "cooldowns": {
        "threads": 90,
        "replies": 30,
        "images": 30
      },
      "meta_description": ""/b/ - Random" is the birthplace of Anonymous, and where people go to discuss random topics and create memes on 4chan.",
      "forced_anon": 1
    },
    {
      "board": "bant",
      "title": "International/Random",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 2097152,
      "max_webm_filesize": 2097152,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 150,
      "cooldowns": {
        "threads": 60,
        "replies": 15,
        "images": 15
      },
      "meta_description": ""/bant/ - International/Random" is 4chan's international hanging out board, where you can have fun with Anonymous all over the world.",
      "user_ids": 1,
      "country_flags": 1
    },
    {
      "board": "biz",
      "title": "Business & Finance",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/biz/ - Business & Finance" is 4chan's imageboard for the discussion of business and finance, and cryptocurrencies such as Bitcoin and Dogecoin.",
      "user_ids": 1,
      "is_archived": 1
    },
    {
      "board": "c",
      "title": "Anime/Cute",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/c/ - Anime/Cute" is 4chan's imageboard for cute and moe anime images.",
      "is_archived": 1
    },
    {
      "board": "cgl",
      "title": "Cosplay & EGL",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/cgl/ - Cosplay & EGL" is 4chan's imageboard for the discussion of cosplay, elegant gothic lolita (EGL), and anime conventions.",
      "is_archived": 1
    },
    {
      "board": "ck",
      "title": "Food & Cooking",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/ck/ - Food & Cooking" is 4chan's imageboard for food pictures and cooking recipes.",
      "is_archived": 1
    },
    {
      "board": "cm",
      "title": "Cute/Male",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/cm/ - Cute/Male" is 4chan's imageboard for posting pictures of cute anime males.",
      "is_archived": 1
    },
    {
      "board": "co",
      "title": "Comics & Cartoons",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/co/ - Comics & Cartoons" is 4chan's imageboard dedicated to the discussion of Western cartoons and comics.",
      "spoilers": 1,
      "custom_spoilers": 5,
      "is_archived": 1
    },
    {
      "board": "d",
      "title": "Hentai/Alternative",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/d/ - Hentai/Alternative" is 4chan's imageboard for alternative hentai images.",
      "is_archived": 1
    },
    {
      "board": "diy",
      "title": "Do It Yourself",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/diy/ - Do It Yourself" is 4chan's imageboard for DIY/do it yourself projects, home improvement, and makers.",
      "is_archived": 1
    },
    {
      "board": "e",
      "title": "Ecchi",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/e/ - Ecchi" is 4chan's imageboard for suggestive (ecchi) hentai images.",
      "is_archived": 1
    },
    {
      "board": "f",
      "title": "Flash",
      "ws_board": 0,
      "per_page": 30,
      "pages": 1,
      "max_filesize": 10485760,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/f/ - Flash" is 4chan's upload board for sharing Adobe Flash files (SWFs)."
    },
    {
      "board": "fa",
      "title": "Fashion",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/fa/ - Fashion" is 4chan's imageboard for images and discussion relating to fashion and apparel.",
      "is_archived": 1
    },
    {
      "board": "fit",
      "title": "Fitness",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/fit/ - Fitness" is 4chan's imageboard for weightlifting, health, and fitness.",
      "is_archived": 1
    },
    {
      "board": "g",
      "title": "Technology",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/g/ - Technology" is 4chan's imageboard for discussing computer hardware and software, programming, and general technology.",
      "is_archived": 1,
      "code_tags": 1
    },
    {
      "board": "gd",
      "title": "Graphic Design",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/gd/ - Graphic Design" is 4chan's imageboard for graphic design.",
      "is_archived": 1
    },
    {
      "board": "gif",
      "title": "Adult GIF",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 4194304,
      "max_comment_chars": 2000,
      "max_webm_duration": 300,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/gif/ - Adult GIF" is 4chan's imageboard dedicated to animated adult GIFs and WEBMs.",
      "is_archived": 1,
      "webm_audio": 1
    },
    {
      "board": "h",
      "title": "Hentai",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/h/ - Hentai" is 4chan's imageboard for adult Japanese anime hentai images.",
      "is_archived": 1
    },
    {
      "board": "hc",
      "title": "Hardcore",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/hc/ - Hardcore" is 4chan's imageboard for the posting of adult hardcore pornography.",
      "is_archived": 1,
      "min_image_width": 500,
      "min_image_height": 500
    },
    {
      "board": "his",
      "title": "History & Humanities",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 60,
        "replies": 15,
        "images": 15
      },
      "meta_description": ""/his/ - History & Humanities" is 4chan's board for discussing and debating history.",
      "is_archived": 1
    },
    {
      "board": "hm",
      "title": "Handsome Men",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/hm/ - Handsome Men" is 4chan's imageboard dedicated to sharing adult images of handsome men.",
      "is_archived": 1
    },
    {
      "board": "hr",
      "title": "High Resolution",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/hr/ - High Resolution" is 4chan's imageboard for the sharing of high resolution images.",
      "is_archived": 1,
      "min_image_width": 1000,
      "min_image_height": 1000
    },
    {
      "board": "i",
      "title": "Oekaki",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/i/ - Oekaki" is 4chan's oekaki board for drawing and sharing art.",
      "is_archived": 1,
      "oekaki": 1
    },
    {
      "board": "ic",
      "title": "Artwork/Critique",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/ic/ - Artwork/Critique" is 4chan's imageboard for the discussion and critique of art.",
      "is_archived": 1
    },
    {
      "board": "int",
      "title": "International",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/int/ - International" is 4chan's international board, for the exchange of foreign language and culture.",
      "is_archived": 1,
      "country_flags": 1
    },
    {
      "board": "jp",
      "title": "Otaku Culture",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 5000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 300,
      "cooldowns": {
        "threads": 3600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/jp/ - Otaku Culture" is 4chan's board for discussing Japanese otaku culture.",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1,
      "sjis_tags": 1
    },
    {
      "board": "k",
      "title": "Weapons",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/k/ - Weapons" is 4chan's imageboard for discussing all types of weaponry, from military tanks to guns and knives.",
      "is_archived": 1
    },
    {
      "board": "lgbt",
      "title": "LGBT",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/lgbt/ - LGBT" is 4chan's imageboard for Lesbian-Gay-Bisexual-Transgender-Queer and sexuality discussion.",
      "is_archived": 1
    },
    {
      "board": "lit",
      "title": "Literature",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 3000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/lit/ - Literature" is 4chan's board for the discussion of books, authors, and literature.",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1
    },
    {
      "board": "m",
      "title": "Mecha",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/m/ - Mecha" is 4chan's imageboard for discussing Japanese mecha robots and anime, like Gundam and Macross.",
      "spoilers": 1,
      "custom_spoilers": 4,
      "is_archived": 1
    },
    {
      "board": "mlp",
      "title": "Pony",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/mlp/ - Pony" is 4chan's imageboard dedicated to the discussion of My Little Pony: Friendship is Magic.",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1
    },
    {
      "board": "mu",
      "title": "Music",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/mu/ - Music" is 4chan's imageboard for discussing all types of music.",
      "is_archived": 1
    },
    {
      "board": "n",
      "title": "Transportation",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/n/ - Transportation" is 4chan's imageboard for discussing modes of transportation like trains and bicycles.",
      "is_archived": 1
    },
    {
      "board": "news",
      "title": "Current News",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/news/ - Current News; is 4chan's board for current news. ",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1,
      "text_only": 1,
      "require_subject": 1
    },
    {
      "board": "o",
      "title": "Auto",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/o/ - Auto" is 4chan's imageboard for discussing cars and motorcycles.",
      "is_archived": 1
    },
    {
      "board": "out",
      "title": "Outdoors",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 5242880,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/out/ - Outdoors" is 4chan's imageboard for discussing survivalist skills and outdoor activities such as hiking.",
      "is_archived": 1
    },
    {
      "board": "p",
      "title": "Photography",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 5242880,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/p/ - Photography" is 4chan's imageboard for sharing and critiquing photos.",
      "is_archived": 1
    },
    {
      "board": "po",
      "title": "Papercraft & Origami",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/po/ - Papercraft & Origami" is 4chan's imageboard for posting papercraft and origami templates and instructions.",
      "is_archived": 1
    },
    {
      "board": "pol",
      "title": "Politically Incorrect",
      "ws_board": 0,
      "per_page": 20,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 90,
        "replies": 30,
        "images": 30
      },
      "meta_description": ""/pol/ - Politically Incorrect" is 4chan's board for discussing and debating politics and current events.",
      "user_ids": 1,
      "is_archived": 1,
      "troll_flags": 1
    },
    {
      "board": "qa",
      "title": "Question & Answer",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/qa/ - Question & Answer" is 4chan's imageboard for question and answer threads.",
      "is_archived": 1
    },
    {
      "board": "qst",
      "title": "Quests",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 3000,
      "max_webm_duration": 120,
      "bump_limit": 750,
      "image_limit": 375,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/qst/ - Quests" is 4chan's imageboard for grinding XP.",
      "spoilers": 1,
      "user_ids": 1,
      "is_archived": 1,
      "require_subject": 1,
      "oekaki": 1
    },
    {
      "board": "r",
      "title": "Adult Requests",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/r/ - Request" is 4chan's imageboard dedicated to fulfilling all types of user requests.",
      "is_archived": 1,
      "webm_audio": 1
    },
    {
      "board": "r9k",
      "title": "ROBOT9001",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 2097152,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/r9k/ - ROBOT9001" is a board for hanging out and posting greentext stories.",
      "spoilers": 1,
      "is_archived": 1
    },
    {
      "board": "s",
      "title": "Sexy Beautiful Women",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/s/ - Sexy Beautiful Women" is 4chan's imageboard dedicated to sharing images of softcore pornography.",
      "is_archived": 1,
      "min_image_width": 500,
      "min_image_height": 500
    },
    {
      "board": "s4s",
      "title": "Shit 4chan Says",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 2097152,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 300,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""[s4s] - Shit 4chan Says" is 4chan's imageboard for posting dank memes :^)",
      "spoilers": 1,
      "custom_spoilers": 6,
      "is_archived": 1
    },
    {
      "board": "sci",
      "title": "Science & Math",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/sci/ - Science & Math" is 4chan's board for the discussion of science and math.",
      "is_archived": 1,
      "math_tags": 1
    },
    {
      "board": "soc",
      "title": "Cams & Meetups",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 5242880,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/soc/ - Cams & Meetups" is 4chan's board for camwhores and meetups.",
      "user_ids": 1,
      "is_archived": 1,
      "forced_anon": 1
    },
    {
      "board": "sp",
      "title": "Sports",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/sp/ - Sports" is 4chan's imageboard for sports discussion.",
      "is_archived": 1,
      "country_flags": 1
    },
    {
      "board": "t",
      "title": "Torrents",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/t/ - Torrents" is 4chan's imageboard for posting links and descriptions to torrents.",
      "is_archived": 1
    },
    {
      "board": "tg",
      "title": "Traditional Games",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/tg/ - Traditional Games" is 4chan's imageboard for discussing traditional gaming, such as board games and tabletop RPGs.",
      "spoilers": 1,
      "custom_spoilers": 2,
      "is_archived": 1
    },
    {
      "board": "toy",
      "title": "Toys",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/toy/ - Toys" is 4chan's imageboard for talking about all kinds of toys!",
      "is_archived": 1
    },
    {
      "board": "trash",
      "title": "Off-Topic",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/trash/ - Off-topic" is 4chan's imageboard jail for off-topic threads.",
      "forced_anon": 1
    },
    {
      "board": "trv",
      "title": "Travel",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/trv/ - Travel" is 4chan's imageboard dedicated to travel and the countries of the world.",
      "is_archived": 1
    },
    {
      "board": "tv",
      "title": "Television & Film",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/tv/ - Television & Film" is 4chan's imageboard dedicated to the discussion of television and film.",
      "spoilers": 1,
      "custom_spoilers": 5,
      "is_archived": 1
    },
    {
      "board": "u",
      "title": "Yuri",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/u/ - Yuri" is 4chan's imageboard for yuri hentai images.",
      "spoilers": 1,
      "is_archived": 1
    },
    {
      "board": "v",
      "title": "Video Games",
      "ws_board": 1,
      "per_page": 20,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/v/ - Video Games" is 4chan's imageboard dedicated to the discussion of PC and console video games.",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1
    },
    {
      "board": "vg",
      "title": "Video Game Generals",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 750,
      "image_limit": 375,
      "cooldowns": {
        "threads": 600,
        "replies": 90,
        "images": 120
      },
      "meta_description": ""/vg/ - Video Game Generals" is 4chan's imageboard dedicated to the discussion of PC and console video games.",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1,
      "require_subject": 1
    },
    {
      "board": "vip",
      "title": "Very Important Posts",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/vip/ - Very Important Posts" is 4chan's imageboard for Pass users.",
      "spoilers": 1,
      "is_archived": 1,
      "sjis_tags": 1,
      "oekaki": 1
    },
    {
      "board": "vp",
      "title": "Pokémon",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/vp/ - Pokémon" is 4chan's imageboard dedicated to discussing the Pokémon series of video games and shows.",
      "spoilers": 1,
      "custom_spoilers": 1,
      "is_archived": 1
    },
    {
      "board": "vr",
      "title": "Retro Games",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 500,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/vr/ - Retro Games" is 4chan's imageboard for discussing retro console video games and classic arcade games.",
      "spoilers": 1,
      "custom_spoilers": 2,
      "is_archived": 1
    },
    {
      "board": "w",
      "title": "Anime/Wallpapers",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 6291456,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/w/ - Anime/Wallpapers" is 4chan's imageboard for posting Japanese anime wallpapers.",
      "is_archived": 1,
      "min_image_width": 480,
      "min_image_height": 600
    },
    {
      "board": "wg",
      "title": "Wallpapers/General",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 6291456,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/wg/ - Wallpapers/General" is 4chan's imageboard for posting general wallpapers.",
      "is_archived": 1,
      "min_image_width": 480,
      "min_image_height": 600
    },
    {
      "board": "wsg",
      "title": "Worksafe GIF",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 6291456,
      "max_webm_filesize": 6291456,
      "max_comment_chars": 2000,
      "max_webm_duration": 300,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/wsg/ - Worksafe GIF" is 4chan's imageboard dedicated to sharing worksafe animated GIFs and WEBMs.",
      "is_archived": 1,
      "webm_audio": 1
    },
    {
      "board": "wsr",
      "title": "Worksafe Requests",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 8388608,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/wsr/ - Worksafe Requests" is 4chan's imageboard dedicated to fulfilling non-NSFW requests.",
      "is_archived": 1,
      "webm_audio": 1
    },
    {
      "board": "x",
      "title": "Paranormal",
      "ws_board": 1,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 310,
      "image_limit": 150,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 60
      },
      "meta_description": ""/x/ - Paranormal" is 4chan's imageboard for the discussion of paranormal, spooky pictures and conspiracy theories.",
      "is_archived": 1
    },
    {
      "board": "y",
      "title": "Yaoi",
      "ws_board": 0,
      "per_page": 15,
      "pages": 10,
      "max_filesize": 4194304,
      "max_webm_filesize": 3145728,
      "max_comment_chars": 2000,
      "max_webm_duration": 120,
      "bump_limit": 300,
      "image_limit": 300,
      "cooldowns": {
        "threads": 600,
        "replies": 60,
        "images": 30
      },
      "meta_description": ""/y/ - Yaoi" is 4chan's imageboard for posting adult yaoi hentai images.",
      "is_archived": 1
    }
  ],
  "troll_flags": {
    "AC": "Anarcho-Capitalist",
    "AN": "Anarchist",
    "BL": "Black Nationalist",
    "CF": "Confederate",
    "CM": "Communist",
    "CT": "Catalonia",
    "DM": "Democrat",
    "EU": "European",
    "FC": "Fascist",
    "GN": "Gadsden",
    "GY": "Gay",
    "JH": "Jihadi",
    "KN": "Kekistani",
    "MF": "Muslim",
    "NB": "National Bolshevik",
    "NZ": "Nazi",
    "PC": "Hippie",
    "PR": "Pirate",
    "RE": "Republican",
    "TM": "Templar",
    "TR": "Tree Hugger",
    "UN": "United Nations",
    "WP": "White Supremacist"
  }
}
Parameter Type Description
board string 4chan board.
title string 4chan board title.
description string 4chan board description.

4chanThreadViewer

Sample Data

{
  "board": "biz",
  "thread_number": "904256"
}

4chan thread from a specified board.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["biz","904256"]' https://api.maplenodes.com/v1/4chanThreadViewer

4chanThreadViewer [board] [thread_number]

Parameter Type Description
board string 4chan board.
thread_number int Thread number to view.

Response Parameters

Sample 200 Response

[
  {
    "subject": "Welcome to /biz/ - Business & Finance",
    "total_replies": 0,
    "total_images": 0
  },
  {
    "name": "Anonymous",
    "id": "Mod",
    "time": "09/24/15(Thu)13:11:36",
    "post_number": 904256,
    "reply_to": 0,
    "comment": "This board is for the discussion of topics related to business, economics, financial markets, securities, currencies (including cryptocurrencies), commodities, etc -- as well as topics relating to starting and running a business.<br><br>Discussions of government policy must be strictly limited to economic policies (fiscal and monetary). Discussions of a political nature should be posted on <a href=\"/pol/\" class=\"quotelink\">&gt;&gt;&gt;/pol/</a>. Global Rule 3 is also obviously in effect.<br><br>Note: /biz/ is NOT a place for ADVERTISING or SOLICITING. Do NOT use it to promote your business, ventures, or anything you may have an interest in. Anything that looks remotely like advertising or soliciting will be removed. Begging/asking (including tipping) for cyptocurrencies or asking for money/capital is also strictly forbidden. Want to advertise? Buy a banner /biz/ targeted banner ad: <a href=\"https://www.4chan.org/advertise?selfserve\" target=\"_blank\">https://www.4chan.org/advertise?sel<wbr>fserve</a>"
  }
]
Parameter Type Description
subject string Thread subject title.
total_replies int Number of total replies.
total_images int Number of total images.
name string Username of poster.
id string 4chan user ID.
time string Timestamp of posted message.
post_number string Post number.
reply_to string Reply to post number.
comment string Comment from user.

4chanThreadViewerPrice

Sample Data

{
  "board": "biz",
  "thread_number": "904256",
  "ticker": "BTC",
  "currency": "USD"
}

4chan thread from a specified board with pricing information of a specified crypto ticker based off the original post creation time.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["biz","904256","BTC","USD"]' https://api.maplenodes.com/v1/4chanThreadViewerPrice

4chanThreadViewerPrice [board] [thread_number] [ticker] [currency]

Parameter Type Description
board string 4chan board.
thread_number int Thread number to view.
ticker string Crypto asset ticker.
currency string World currency.

Response Parameters

Sample 200 Response

[
  {
    "BTC": {
      "USD": 233.76000000
    }
  },
  {
    "percent_change_24h": "-0.85"
  },
  {
    "subject": "Welcome to /biz/ - Business &amp; Finance",
    "total_replies": 0,
    "total_images": 0
  },
  {
    "name": "Anonymous",
    "id": "Mod",
    "time": "09/24/15(Thu)13:11:36",
    "post_number": 904256,
    "reply_to": 0,
    "comment": "This board is for the discussion of topics related to business, economics, financial markets, securities, currencies (including cryptocurrencies), commodities, etc -- as well as topics relating to starting and running a business.<br><br>Discussions of government policy must be strictly limited to economic policies (fiscal and monetary). Discussions of a political nature should be posted on <a href=\"/pol/\" class=\"quotelink\">&gt;&gt;&gt;/pol/</a>. Global Rule 3 is also obviously in effect.<br><br>Note: /biz/ is NOT a place for ADVERTISING or SOLICITING. Do NOT use it to promote your business, ventures, or anything you may have an interest in. Anything that looks remotely like advertising or soliciting will be removed. Begging/asking (including tipping) for cyptocurrencies or asking for money/capital is also strictly forbidden. Want to advertise? Buy a banner /biz/ targeted banner ad: <a href=\"https://www.4chan.org/advertise?selfserve\" target=\"_blank\">https://www.4chan.org/advertise?sel<wbr>fserve</a>"
  }
]
Parameter Type Description
ticker string Price of crypto ticker in world currency of thread timestamp.
percent_change_24h int Percent change.
subject string Thread subject title.
total_replies int Number of total replies.
total_images int Number of total images.
name string Username of poster.
id string 4chan user ID.
time string Timestamp of posted message.
post_number string Post number.
reply_to string Reply to post number.
comment string Comment from user.

4chanThreads

Sample Data

{
  "board": "biz"
}

4chan threads from a specified board.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["biz"]' https://api.maplenodes.com/v1/4chanThreads

4chanThreads [board]

Parameter Type Description
board string 4chan board.

Response Parameters

Sample 200 Response

[
  {
    "number": 904256,
    "time": "09/24/15(Thu)13:11:36",
    "subject": "Welcome to /biz/ - Business &amp; Finance",
    "original_post": "This board is for the discussion of topics related to business, economics, financial markets, securities, currencies (including cryptocurrencies), commodities, etc -- as well as topics relating to starting and running a business.<br><br>Discussions of government policy must be strictly limited to economic policies (fiscal and monetary). Discussions of a political nature should be posted on <a href=\"/pol/\" class=\"quotelink\">&gt;&gt;&gt;/pol/</a>. Global Rule 3 is also obviously in effect.<br><br>Note: /biz/ is NOT a place for ADVERTISING or SOLICITING. Do NOT use it to promote your business, ventures, or anything you may have an interest in. Anything that looks remotely like advertising or soliciting will be removed. Begging/asking (including tipping) for cyptocurrencies or asking for money/capital is also strictly forbidden. Want to advertise? Buy a banner /biz/ targeted banner ad: <a href=\"https://www.4chan.org/advertise?selfserve\" target=\"_blank\">https://www.4chan.org/advertise?sel<wbr>fserve</a>",
    "replies": 0,
    "images": 0
  },
  {
    "number": 4884770,
    "time": "12/08/17(Fri)08:35:13",
    "subject": "NO BEGGING",
    "original_post": "<span style=\"font-weight:600;font-size:150%;line-height:1.5;\">Begging or asking for &#039;free money&#039;/crypto is strictly forbidden. Encouraging beggars, or posting any kind of &#039;free money&#039; offer is also strictly forbidden.</span>",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18891582,
    "time": "05/05/20(Tue)17:33:14",
    "subject": "/smg/ - Stock Market General",
    "original_post": "the abyss edition<br><br><span class=\"quote\">&gt;Brokers</span><br>https://pastebin.com/F1yujtVq<br><br><span class=\"quote\">&gt;Stock market Words</span><br>https://pastebin.com/VtnpN5iJ<br><br><span class=\"quote\">&gt;Risk Management</span><br>https://pastebin.com/sqJUcbjp<br><br><span class=\"quote\">&gt;Live Bloomberg Stream</span><br>http://www.livenewson.com/american/<wbr>bloomberg-television-business.html<br><br><span class=\"quote\">&gt;Educational Sites</span><br>https://www.investopedia.com/<br>https://www.khanacademy.org/economi<wbr>cs-finance-domain<br>https://nhentai.net/tag/crossdressi<wbr>ng/<br><br><span class=\"quote\">&gt;Free Charts</span><br>http://www.tradingview.com<br>https://www.finscreener.com/<br><br><span class=\"quote\">&gt;Screeners</span><br>https://finviz.com/<br>https://www.tradingview.com/screene<wbr>r<br>https://etfdb.com/<br><br><span class=\"quote\">&gt;Pre-Market Data and Live Data</span><br>https://www.investing.com/indices/i<wbr>ndices-futures<br>https://finance.yahoo.com/<br><br><span class=\"quote\">&gt;Bio-pharma Catalyst Calendar</span><br>https://biopharmcatalyst.com<br><br><span class=\"quote\">&gt;Boomer Investing 101</span><br>https://www.bogleheads.org/wiki/Get<wbr>ting_started<br><br><span class=\"quote\">&gt;Dividend Reinvestment (DRIP) Calculator</span><br>https://www.dividendchannel.com/dri<wbr>p-returns-calculator/<br><br><span class=\"quote\">&gt;List of hedge fund holdings</span><br>https://fintel.io/<br><br><span class=\"quote\">&gt;Misc</span><br>https://squeezemetrics.com/monitor<br>https://market24hclock.com/<br><br><a href=\"/biz/thread/18889964#p18889964\" class=\"quotelink\">&gt;&gt;18889964</a>",
    "replies": 184,
    "images": 35
  },
  {
    "number": 18894337,
    "time": "05/05/20(Tue)20:05:15",
    "subject": "I love you so much biz",
    "original_post": "I love you all anons, you boiz mean a lot to me, and even tho sometimes we can be fighting over what coins to buy, I still love you afterwards all the same &lt;3 &lt;3 &lt;3",
    "replies": 4,
    "images": 0
  },
  {
    "number": 18895321,
    "time": "05/05/20(Tue)21:08:11",
    "subject": "I’m about to drop 10k on HEX, be nice to me frens",
    "original_post": "But only if someone expains me how can I cash out. IQ 40 brainlet here",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18894264,
    "time": "05/05/20(Tue)20:00:02",
    "subject": "Any Suggestions",
    "original_post": "Best way/resources to learn technical analysis and fundamental analysis?",
    "replies": 4,
    "images": 1
  },
  {
    "number": 18894019,
    "time": "05/05/20(Tue)19:44:20",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;Janny are you okay?</span><br>Janny are you okay?<br><br><span class=\"quote\">&gt;Are you okay, Janny?</span>",
    "replies": 14,
    "images": 5
  },
  {
    "number": 18894702,
    "time": "05/05/20(Tue)20:26:48",
    "subject": "do I need to say anything? you just win",
    "original_post": "all time high go brrrrrrrrrr<br>and this... is... to go... even further... AND BEYOOOOOOOND!",
    "replies": 5,
    "images": 0
  },
  {
    "number": 18895317,
    "time": "05/05/20(Tue)21:08:01",
    "subject": null,
    "original_post": "Is this true? Should I look into BSV more? I like Money Button and Twetch but don&#039;t know anything else",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18895316,
    "time": "05/05/20(Tue)21:07:58",
    "subject": null,
    "original_post": "tha tha thats bullish",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18895305,
    "time": "05/05/20(Tue)21:07:22",
    "subject": null,
    "original_post": "The only way to cure the incel problem is to reduce the demand of women and increase the supply of women. It&#039;s basic economics.<br>We need to start turning men into women with hrt. Starting with the failed males on this board<br><br>Join our server and turn yourself into a cute girl: discord gg ZEasuV",
    "replies": 1,
    "images": 0
  },
  {
    "number": 18895246,
    "time": "05/05/20(Tue)21:02:57",
    "subject": "Elimination of Payroll and Capital Gains Taxes",
    "original_post": "Sorry commies, your time is up.",
    "replies": 7,
    "images": 0
  },
  {
    "number": 18895285,
    "time": "05/05/20(Tue)21:05:21",
    "subject": "Bulls and Bears....GET IN HERE",
    "original_post": "Let&#039;s have a civilized discussion here...<br>why are you the way that you are right now? What&#039;s your outlook on the economy?",
    "replies": 1,
    "images": 0
  },
  {
    "number": 18894986,
    "time": "05/05/20(Tue)20:44:28",
    "subject": null,
    "original_post": "Why&#039;s the price of Nintendo Switch so high right now despite being released in 2017?<br>Is it defying Moore&#039;s law?",
    "replies": 14,
    "images": 1
  },
  {
    "number": 18894694,
    "time": "05/05/20(Tue)20:26:23",
    "subject": "YOUTUBE SCAM",
    "original_post": "Right now there is a live event going on on YouTube under the account name “Ledger CEO” where they are saying they are basically doubling your bitcoin; if you send them some they will send back double and a bonus on top (the runescape classic) along with a prerecorded video interview playing in the corner of the screen, when you click on the account it’s clearly someone from india and all the rest of the videos have under 1000 views about miscellaneous topics. Somehow YouTube has let this get high in the trending and when I was there there was over 20,000 people watching. Spread the word sirs, don’t lose your bitcoin to pajeets",
    "replies": 3,
    "images": 2
  },
  {
    "number": 18894963,
    "time": "05/05/20(Tue)20:42:59",
    "subject": null,
    "original_post": "What are you besides /biz/? Financial stability is one of the four pillars of happiness, but what other boards/hobbies do you have? For me, I&#039;m /biz/, /ck/, /fit/, /pol/.",
    "replies": 12,
    "images": 3
  },
  {
    "number": 18892195,
    "time": "05/05/20(Tue)18:01:16",
    "subject": "500k dumps by Chainlink",
    "original_post": "The 700k dumps started two weeks after they pumped their price with a Google &quot;partnership&quot; in July 2019. Now they started 500k dumps in a different address. Is the top in again?",
    "replies": 62,
    "images": 13
  },
  {
    "number": 18887666,
    "time": "05/05/20(Tue)14:50:52",
    "subject": "Chainlink insider back, any questions?",
    "original_post": "<a href=\"/biz/thread/18793514#p18793514\" class=\"quotelink\">&gt;&gt;18793514</a><br><br>Sats continue to dump, insider back for a few. By now you&#039;re probably aware of Gemini. Even then, volume is much lower because bots are off.<br><br>https://coinmarketcap.com/currencie<wbr>s/chainlink/<br><br>Volume is 1/3 what it was recently. It was a large reason for price spikes given some of the arbitrage and wash trading happening behind the scenes. CZ is a bad actor, all I&#039;ll say about him. If you know our history, you&#039;ll know they listed our token without contacting us. <br><br>That said, exchange listings are responsible for the majority of the gains, insiders know ahead of time and buy more supply, this latest episode was the Winklevoss&#039; twins doing. What&#039;s frustrating is it&#039;s inorganic, and the price isn&#039;t reflective of network usage or legitimate enterprise adoption. We have been silent on that front for good (or bad) reason, it&#039;s hard to convince the older generations that the concept is as important as it is to future regulatory actions and adoption. <br><br>Ask away, I have 20 minutes",
    "replies": 106,
    "images": 12
  },
  {
    "number": 18895302,
    "time": "05/05/20(Tue)21:07:04",
    "subject": "T minutes 58 minutes",
    "original_post": "I can&#039;t believe it&#039;s really happening. After years of memes and fudding and hoping and hodling and pajeet scammers and P&amp;D meme tokens. The day is finally fucking here.<br><br>Remember this moment. Because in 57 minutes we&#039;ll all be on the other side. We fucking did it and it&#039;s every bit as beautiful as I had hoped. Thank you. THANK YOU.",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18895300,
    "time": "05/05/20(Tue)21:06:58",
    "subject": null,
    "original_post": "Why is the hash rate so high",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18887763,
    "time": "05/05/20(Tue)14:54:15",
    "subject": "DAILY 32 ETHEREUM CHECK!",
    "original_post": "For the love of god, don&#039;t miss out on staking /biz/",
    "replies": 39,
    "images": 3
  },
  {
    "number": 18893440,
    "time": "05/05/20(Tue)19:12:09",
    "subject": null,
    "original_post": "If TA can’t predict future events, why are people still using it?",
    "replies": 24,
    "images": 3
  },
  {
    "number": 18894569,
    "time": "05/05/20(Tue)20:18:36",
    "subject": "Petition to ban HEX threads",
    "original_post": "We are now at an impasse that must be resolved.<br>The state of this board has been really deteriorating and hemorrhaging users because of this nonstop shilling of this shitcoin. <br>If mods don&#039;t make a decision, this board will die a slow and painful die.<br><br>Due to the fact that HEX has been proven to be a legitimate scam with quantifiable evidence; I suggest we make an exception to &quot;free speech&quot; rules and make it a 3 day ban for posting about HEX.<br>HEX is the only &quot;&quot;&quot;stock&quot;&quot;&quot; that has been proven without a doubt that it is a scam hence why it was banned from whale alert. <br><br>We need to follow suit and bring this board to a more bearable state. <br><br>Vote<br><br>https://www.strawpoll.me/19958774",
    "replies": 32,
    "images": 4
  },
  {
    "number": 18894502,
    "time": "05/05/20(Tue)20:15:32",
    "subject": "Next crypto bullrun",
    "original_post": "Hate it all you want, but this thing will cause the next crypto bullrun because of the million copy cats this will create. A rising tide raises all boats.",
    "replies": 13,
    "images": 2
  },
  {
    "number": 18895294,
    "time": "05/05/20(Tue)21:06:12",
    "subject": "BUY STARBUCKS",
    "original_post": "JC says so. All small coffee shops are getting fucked from COVID-19",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18893779,
    "time": "05/05/20(Tue)19:30:50",
    "subject": null,
    "original_post": "What&#039;s the single most expensive item in your house? For me, it&#039;s my gaming PC.",
    "replies": 51,
    "images": 3
  },
  {
    "number": 18892507,
    "time": "05/05/20(Tue)18:18:15",
    "subject": "JULY IS THE BOTTOM",
    "original_post": "It will take atleast a few weeks to a month before burgers realize they fucked up relaxing the lockdowns too early.<br><br>JULY IS THE BOTTOM. <br><br>S&amp;P 500 target: $1900<br>Gold target: $1300<br>Bitcoin target: $3300<br><br>After this, the stock market will take at least 2 years to recover BUT expect gold and bitcoin to go through the fucking moon end of this year.<br><br>Oh and screencap this and post back on /biz/ in a few months time to prove how you missed another big chance to make it.",
    "replies": 7,
    "images": 3
  },
  {
    "number": 18895110,
    "time": "05/05/20(Tue)20:52:39",
    "subject": null,
    "original_post": "Chainlink&#039;s model will not succeed, here is why. The cost/risk of attacking the oracle nodes must always exceed that of the exploitable value of the contracts that rely on them. Thus, either smart contracts will never handle large amounts of value, or the oracle network must be exceedingly large and expensive to attack. It doesn&#039;t make sense for it to be more expensive to secure a price feed than the actual underlying contracts that rely on it. By relying on the oracle nodes, you&#039;ve made it easier to attack. Security of the real world price feeds themselves is irrelevant as oracle nodes are now the source of truth. Doesn&#039;t matter how secure coinbase is, for example, if you&#039;re not getting your data directly from it.<br><br>So... what if real world feeds signed their data? Then the oracle nodes could just pass it on and you can verify the data is untampered, right? Yes, exactly, so why are oracles needed for consensus on signed data? They&#039;re just glorified https clients at that point. They are unnecessary.<br><br>I see the only real solution being that there is a standardized data/view spec contract much like the erc20-721 contract. Data providers like Coinbase publish data directly on chain. It is verifiable because the contract is written in a way where only the creator of the contract can add new data points, and to do so implies control of the private key of the owner. Aggregation of multiple data contracts into a single combined one using median or some other filtering function makes it so that at least 50% of the data contracts must be compromised in order for the attack to be successful. For data contracts to be compromised, either the network must be compromised, or the data provider themselves must be compromised. Assuming network is not compromised, as we have bigger issues if that happens, that means 50% of the data providers must be attacked. If 50% of the large exchanges are simultaneous compromised, i think it&#039;s fine if everything goes to shit",
    "replies": 4,
    "images": 1
  },
  {
    "number": 18889554,
    "time": "05/05/20(Tue)15:59:21",
    "subject": "LCX listing in HitBTC next weeeeeeek!!!!",
    "original_post": "LCX is heading by far the vote for the next token to be listed in HitBTC...<br>COUNTDOWN TIME 5 DAYS<br>Get on board foools!!!",
    "replies": 13,
    "images": 3
  },
  {
    "number": 18890959,
    "time": "05/05/20(Tue)17:03:14",
    "subject": "Getting Chainlink vibes",
    "original_post": "The team has been building for years w/ no marketing<br>The team works with many eth developers and Vitalik tweeted about their project. <br>Consensys Backed, yet still under the radar. <br>Profit model built in to the network, dont have to dump tokens.<br>Super small market cap. <br>They plan to market at main net (august most likely) just like link did last may (look at what happened to link price) <br>Can be built into the backend of any wallet, exchange, staking service<br>Accumulation going on.<br>Only place being shilled is by high IQ biz<br>acap&#039;s proven success record of finding gems<br>The community is growing exponentially (check discord, many joins each day)<br>Less than 2,000 wallets holding rpl (what happens when it gets to 5k, 10k, or 100k like link?)<br>I could keep going on but maybe you get the point. I didn&#039;t think another link-like gem would come along ever, but I was wrong.",
    "replies": 37,
    "images": 7
  },
  {
    "number": 18892423,
    "time": "05/05/20(Tue)18:13:33",
    "subject": null,
    "original_post": "What did /biz/ talk about before cryptos?",
    "replies": 49,
    "images": 5
  },
  {
    "number": 18880755,
    "time": "05/05/20(Tue)09:39:12",
    "subject": null,
    "original_post": "Post /biz/ dream pads",
    "replies": 278,
    "images": 91
  },
  {
    "number": 18894426,
    "time": "05/05/20(Tue)20:11:09",
    "subject": "Please understand, this is all I can reveal at the current time.",
    "original_post": "George--<br><br>It was a pleasure seeing you at Brdo Castle. Thank you again for your kind words and commitments. I look forward to visiting Prairie Chapel Ranch and meeting your wonderful family.<br><br>I write to inform you of the status of &#039;Rusalka&#039;. Please know that our nation&#039;s work on this project was the crown jewel of Soviet science, more important than the space program and nuclear program combined. Indeed, it has the potential to shape the course of human history for centuries to come.<br><br>For this reason, we cannot at this time reveal to you, our friends in the US, the location of the lighthouse, and we absolutely cannot commit to any request for dismantling or demolishing it.<br><br>Please understand, and know that this determination has no impact on our other commitments made to the US and the NATO alliance. We seek to move forward to a more prosperous future as close allies and trading partners.<br><br>--Vladimir.",
    "replies": 60,
    "images": 3
  },
  {
    "number": 18894416,
    "time": "05/05/20(Tue)20:10:19",
    "subject": null,
    "original_post": "My employer is trying to force us to come back to work with masks on. I told them I refuse to wear a mask cause its hard to breathe and i have a history of athsma.<br><br>Can they force me to wear a mask? Can I sue or take any other action if they fire me for refusing to wear one?",
    "replies": 3,
    "images": 1
  },
  {
    "number": 18894880,
    "time": "05/05/20(Tue)20:37:45",
    "subject": "TETHER ONLY HOLD 241 MILLION!!!!!",
    "original_post": "<span class=\"quote\">&gt;Tether minted over $1.2 billion in USDT tokens in April.</span><br><span class=\"quote\">&gt;$67 million left the USDT treasury in the last 24 hours.</span><br><span class=\"quote\">&gt;Only $241 million in USDT tokens remain in the Tether Treasury.</span><br><br>Stablecoin platform Tether has drawn up controversy in the crypto community due to its lack of transparency. The platform minted over a $1.2 billion in USDT tokens last month, without providing external audit data proving the platform holds $8B in liquidatable assets.",
    "replies": 6,
    "images": 1
  },
  {
    "number": 18892041,
    "time": "05/05/20(Tue)17:53:52",
    "subject": null,
    "original_post": "There are no affordable suburbs left in America that aren&#039;t overrun with niggers or spics. If you&#039;re white but not rich, there&#039;s no place for you anymore. Most of us will die never having attained the standard of living that our parents and grandparents had.",
    "replies": 96,
    "images": 8
  },
  {
    "number": 18893395,
    "time": "05/05/20(Tue)19:09:41",
    "subject": null,
    "original_post": "What does he hold?",
    "replies": 14,
    "images": 0
  },
  {
    "number": 18895258,
    "time": "05/05/20(Tue)21:03:41",
    "subject": null,
    "original_post": "Is it worth it to stake?",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18894450,
    "time": "05/05/20(Tue)20:12:43",
    "subject": "Orchid (OXT) VPN token pushed by Coinbase",
    "original_post": "What does /biz/ think about this one? Just a pump and dump or is the multi hopping theory behind it actually valid, ushering in a new age of decentralized VPN?",
    "replies": 9,
    "images": 1
  },
  {
    "number": 18894004,
    "time": "05/05/20(Tue)19:43:21",
    "subject": null,
    "original_post": "Bitcoin was blockchains first application. <br><br>Holo is holochains first application. <br><br>Holochain is vastly Superior to blockchain. <br><br>Early Holo hosts and investors are going to be loaded in a few years.",
    "replies": 7,
    "images": 2
  },
  {
    "number": 18894398,
    "time": "05/05/20(Tue)20:09:17",
    "subject": "I have $200,000 to spend",
    "original_post": "You have 10 posts to sell me your bags and maybe i will go all in",
    "replies": 26,
    "images": 2
  },
  {
    "number": 18893873,
    "time": "05/05/20(Tue)19:36:03",
    "subject": "Is 32 ETH the entry fee to the Citadel or the ETHnostate?",
    "original_post": "What does /biz/ call it?",
    "replies": 5,
    "images": 2
  },
  {
    "number": 18895208,
    "time": "05/05/20(Tue)20:59:03",
    "subject": "BTC prediction general",
    "original_post": "Will it break 10k or 8k first?",
    "replies": 3,
    "images": 0
  },
  {
    "number": 18894335,
    "time": "05/05/20(Tue)20:05:09",
    "subject": "FUCK YOU",
    "original_post": "every time I buy something shilled here... I lose money...<br>Toxic faggots<br>FUCK you...",
    "replies": 16,
    "images": 4
  },
  {
    "number": 18894491,
    "time": "05/05/20(Tue)20:15:04",
    "subject": null,
    "original_post": "One word",
    "replies": 4,
    "images": 2
  },
  {
    "number": 18877910,
    "time": "05/05/20(Tue)05:57:00",
    "subject": null,
    "original_post": "Soon.",
    "replies": 138,
    "images": 18
  },
  {
    "number": 18892067,
    "time": "05/05/20(Tue)17:55:17",
    "subject": "Zil",
    "original_post": "Quietly doubles over the last month. Here&#039;s a tip for you degenerate gamblers: look at the volume increase and ask why. Then go look at who they hired a few weeks ago. You&#039;re fucking welcome. This is going to be 4 cents by the end of May.",
    "replies": 18,
    "images": 0
  },
  {
    "number": 18894010,
    "time": "05/05/20(Tue)19:43:34",
    "subject": null,
    "original_post": "The current economy system is a big ponzi scam where current generations profit but future ones 100+ years get fucked.",
    "replies": 9,
    "images": 0
  },
  {
    "number": 18895189,
    "time": "05/05/20(Tue)20:57:29",
    "subject": "LINK SCAMMER BTFO",
    "original_post": "THEY ARE CRUMBLING AHAHAHAHAHAHAHAAHAHAAHA",
    "replies": 1,
    "images": 0
  },
  {
    "number": 18893316,
    "time": "05/05/20(Tue)19:05:05",
    "subject": null,
    "original_post": "How much do you get paid bi-weekly and what is your monthly rent payment?",
    "replies": 49,
    "images": 4
  },
  {
    "number": 18891313,
    "time": "05/05/20(Tue)17:20:39",
    "subject": "/PTG/ penny stocks general",
    "original_post": "/PTG/ - After hours crab edition<br><br>Old thread: <a href=\"/biz/thread/18887493#p18887493\" class=\"quotelink\">&gt;&gt;18887493</a>",
    "replies": 186,
    "images": 26
  },
  {
    "number": 18891663,
    "time": "05/05/20(Tue)17:36:45",
    "subject": "/tsg/ Tanker Stock General",
    "original_post": "It&#039;s hard to tell that DHT is a profitable company looking at its stock edition<br><br><span class=\"quote\">&gt;Education</span><br>https://www.investopedia.com/articl<wbr>es/investing/012316/crude-tankers-b<wbr>usiness-transporting-oil.asp<br>https://lawexplores.com/the-tanker-<wbr>market-current-structure-and-econom<wbr>ic-analysis/<br>https://blogs.worldbank.org/develop<wbr>menttalk/what-triggered-oil-price-p<wbr>lunge-2014-2016-and-why-it-failed-d<wbr>eliver-economic-impetus-eight-chart<wbr>s<br><br><span class=\"quote\">&gt;Maritime/tanker news</span><br>https://lloydslist.maritimeintellig<wbr>ence.informa.com/<br>https://www.tradewindsnews.com/tank<wbr>ers/<br>https://www.hellenicshippingnews.co<wbr>m/<br>https://www.marinevesseltraffic.com<wbr>/2013/02/tanker-track.html<br><br><span class=\"quote\">&gt;Companies (not exhaustive or recommendations)</span><br>https://www.frontline.bm/<br>https://www.tenn.gr/<br>https://www.euronav.com/<br>https://www.dhtankers.com/<br>https://www.nat.bm/<br>https://www.teekay.com/business/tan<wbr>kers/<br>https://www.scorpiotankers.com<br>https://www.sflcorp.com/<br><br><span class=\"quote\">&gt;Past earnings report</span><br>ASC : Estimated EPS $0.14, actual $0.20 (best on record).<br>DHT: Estimated EPS $0.54, actual $0.44 (dwarfed 2019 Q1 of $0.12).<br><br><span class=\"quote\">&gt; Earnings report expected today </span><br>None<br><br><span class=\"quote\">&gt; Upcoming earnings reports calendar</span><br>STNG tomorrow, pre-market<br>EURN on 5/7 (time not specified)<br>FRO on 5/14, pre-market <br>NAT on 5/18 (time not specified)<br>TNK on 5/21, pre-market<br>SFL on 6/2 (time not specified)<br>TNP on 6/4, pre-market <br><br><span class=\"quote\">&gt;Another important date </span><br>May 19th, 2020 (you know why)<br><br>Previous thread:<br><a href=\"/biz/thread/18881534#p18881534\" class=\"quotelink\">&gt;&gt;18881534</a>",
    "replies": 94,
    "images": 24
  },
  {
    "number": 18895033,
    "time": "05/05/20(Tue)20:47:03",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;3.66</span>",
    "replies": 4,
    "images": 0
  },
  {
    "number": 18893353,
    "time": "05/05/20(Tue)19:07:11",
    "subject": null,
    "original_post": "Looks like landlords are going to start having to get a job soon. :^)<br>What will they put on their resume?",
    "replies": 16,
    "images": 3
  },
  {
    "number": 18895184,
    "time": "05/05/20(Tue)20:57:16",
    "subject": null,
    "original_post": "I&#039;d like to have a more philosophical conversation about HEX. I&#039;m not advocating or opposing it, I&#039;d just like to hear your thoughts. In fact this isn&#039;t even aimed at HEX but the thesis behind it.<br><br>I believe the reason that people invest in crypto is twofold:<br><span class=\"quote\">&gt;Alternate store of wealth.</span><br><span class=\"quote\">&gt;Investment into shares of the project i.e. altcoins and what they suggest to bring to the table fundamentally a la society.</span><br><br>Crypto still has little adoption, in fact close to zero adoption or use case after a decade and it is decreasing.<br><br>If HEX&#039;s ideas are to be followed through; as explicitly an investment that was invented with the singular purpose of investing (w/ CD structure as this potential big drop leverage), then does that say anything to many altcoins, and cryptocurrency as a whole?<br><br>Would HEX&#039;s potential success as this market disruptor amount to a zero sum game against all other crypto&#039;s? And importantly, do people actually want this potentially safer style of investment or do they actually prefer (consciously or not) investing in crypto as they have been since advent - as the highly volatile, big risk big reward side bet. The riskier S&amp;P500. <br><br>Is HEX essentially saying that it&#039;s time to brush aside mass adoption/crypto as everyday currency? But this could be a seismic shift in the space, destroying part of what made crypto crypto. Could this hurt or kill crypto?",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18894384,
    "time": "05/05/20(Tue)20:08:27",
    "subject": null,
    "original_post": "AND JUS LIKE THAT, BITCOIN WILL NEVER EVER EVER BE BELOW $9000 EVER AGAIN",
    "replies": 7,
    "images": 3
  },
  {
    "number": 18893459,
    "time": "05/05/20(Tue)19:13:20",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;If you give everyone $1200 then everyone will just raise their prices by $1200. It&#039;s inflation bro. Learn economics.</span><br><br>How come this hasn&#039;t happened yet? The &quot;experts&quot; promised us this is what would happen if the government gave everyone free money. Is there any proof that UBI or raising the minimum wage actually contributes to inflation? All the corporations know that Americans have an extra $1200 in their pockets so why haven&#039;t they all just randomly raised their prices just cause they can!!!",
    "replies": 51,
    "images": 5
  },
  {
    "number": 18883381,
    "time": "05/05/20(Tue)11:39:08",
    "subject": null,
    "original_post": "so this thing really got exposed huh? Sold my 6k just now thanks to the schizo anon who posted all the proof",
    "replies": 90,
    "images": 11
  },
  {
    "number": 18894732,
    "time": "05/05/20(Tue)20:29:04",
    "subject": null,
    "original_post": "MAKE IT STOP",
    "replies": 10,
    "images": 2
  },
  {
    "number": 18894947,
    "time": "05/05/20(Tue)20:41:38",
    "subject": "horizen",
    "original_post": "Why is it worth 5 dollars?",
    "replies": 1,
    "images": 0
  },
  {
    "number": 18893856,
    "time": "05/05/20(Tue)19:35:01",
    "subject": null,
    "original_post": "If you had $1000 of credit card rebates to spend on anything you want, what would you spend it on? <br><br>I don’t know if I should pay my electricity bill for the next few months or buy a dishwasher",
    "replies": 5,
    "images": 1
  },
  {
    "number": 18894012,
    "time": "05/05/20(Tue)19:43:42",
    "subject": "BREAKING NEWS Qnt... No CBDC&#039;s",
    "original_post": "Qnt... no Cbdc&#039;s<br><br>Jesus Christ <br>It was all made up",
    "replies": 4,
    "images": 0
  },
  {
    "number": 18886670,
    "time": "05/05/20(Tue)14:15:07",
    "subject": "BTC will lose #1 in market cap 2020",
    "original_post": null,
    "replies": 55,
    "images": 6
  },
  {
    "number": 18895051,
    "time": "05/05/20(Tue)20:48:23",
    "subject": "Is this the next 100x?",
    "original_post": null,
    "replies": 2,
    "images": 0
  },
  {
    "number": 18893313,
    "time": "05/05/20(Tue)19:04:52",
    "subject": null,
    "original_post": "Is there a way to make money from being proficient in AE? It’s soemthing I enjoy doing but current job(graphic design) dosent really require it.<br>And don’t say fiverr because then I’m competing against a bunch of Indians who will do it for pennies.",
    "replies": 5,
    "images": 0
  },
  {
    "number": 18891670,
    "time": "05/05/20(Tue)17:37:07",
    "subject": null,
    "original_post": "Should more women learn to code?",
    "replies": 37,
    "images": 3
  },
  {
    "number": 18895119,
    "time": "05/05/20(Tue)20:53:10",
    "subject": "You should EDI",
    "original_post": "<span class=\"quote\">&gt;240k market cap.</span>",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18872034,
    "time": "05/04/20(Mon)21:04:59",
    "subject": "Idena - The Ultimate Breadcrumb",
    "original_post": "Hi Newfags, 2012 btc oldfag here. I&#039;m here to share some advice and pass on a lesson.<br><br>A bit about my history. I first purchased BTC in single digits in early 2012. I didn&#039;t do it for investment purposes and I definitely didn&#039;t know it would ever x2 in value or let alone x10,000 in value from when I purchased it. Why did I buy it? It was a necessary means of exchange to purchase on SR 1.0. This was BTC&#039;s first ever real use case. But that isn&#039;t the point of this post. What I did learn however, was a valuable lesson when I saw the price go from $2 to $100+ - I thought why? It was only then that I discovered the magic underneath bitcoin, its blockchain and ability to remove the middle man and allow you to store wealth outside of a silo&#039;s - silo&#039;s of banks and government control - protection through decentralisation via a peer to peer network. No one could take this from you as long as you kept your private key, your btc was safe. <br><br>Now you have the background, let&#039;s move away from money, onto a topic just as big &#039;identity&#039;. When the internet was built, it was built without human identity layer, instead IP addresses define computers on a network, not people on a network - this is worth repeating, there is no human identity layer on the internet and there is no efficient way to prove you&#039;re a human on the internet. The issue with this, is you have multiple identities instead of a single identity. You have an identity with facebook, another identity with google and another with Amazon etc. You have hundreds of passwords and none of your identities are able to be shared between these companies, you need to start over again and again. Have you ever thought how annoying it is when you&#039;ve spent years building up a trustworthy profile on your chosen website / game / forum only to have to start all over again? <br><br>The problem? Identity lives in silo&#039;s on the internet. Google isn&#039;t going to share your identity with Amazon, and neither will Amazon share your identity with Steam.",
    "replies": 89,
    "images": 13
  },
  {
    "number": 18878858,
    "time": "05/05/20(Tue)07:26:29",
    "subject": "/PMG/ precious metals general",
    "original_post": "Bullion Dealers<br><br>https://www.apmex.com/<br>https://www.boldpreciousmetals.com/<wbr><br>https://www.bgasc.com/<br>https://www.gainesvillecoins.com/<br>https://www.jmbullion.com/<br>https://www.providentmetals.com/<br>https://www.silvertowne.com/<br>https://sdbullion.com/<br>https://schiffgold.com/<br>https://goldsilver.com/<br>https://pinehurstcoins.com/<br>https://www.sprottmoney.com/<br>https://www.moneymetals.com/<br>https://monumentmetals.com/<br>https://www.goldenstatemint.com/<br>https://goldsilver.be/en/<br>https://www.muenze-berlin.de/<br>https://www.hollandgold.nl/<br>https://www.europesilverbullion.com<wbr>/<br>https://www.celticgold.eu/en/<br>https://www.muenzeoesterreich.at/en<wbr>g/<br><br><span class=\"quote\">&gt;Compare</span><br>https://findbullionprices.com/<br><br><span class=\"quote\">&gt;News</span><br>https://www.kitco.com/<br>http://silverseek.com/<br>https://www.mining.com/<br><br><span class=\"quote\">&gt;Bullion tax info by state:</span><br>https://www.apmex.com/state-sales-t<wbr>ax-information<br><br><span class=\"quote\">&gt;Prospecting</span><br>https://www.youtube.com/watch?v=ZCL<wbr>6FKQZyoM [Open] [Open] [Embed] [Embed] [Open]<br>https://www.usgs.gov/energy-and-min<wbr>erals/mineral-resources-program/sci<wbr>ence<br>https://www2.gov.bc.ca/assets/gov/f<wbr>arming-natural-resources-and-indust<wbr>ry/mineral-exploration-mining/docum<wbr>ents/mineral-titles/mt-faqs/faq_fmc<wbr>.pdf<br>https://www.mndm.gov.on.ca/en/mines<wbr>-and-minerals/mining-act<br>https://www.amazon.ca/Gold-Creeks-G<wbr>hostowns-British-Columbia/dp/088839<wbr>988X<br><br><span class=\"quote\">&gt;Test</span><br>Nitric Acid<br>https://www.youtube.com/watch?v=3mg<wbr>9YcAShTo [Open] [Open]<br>Magnets, how do they work?<br>https://www.youtube.com/watch?v=NgS<wbr>Xg-WOEVY [Open] [Open]<br><br><span class=\"quote\">&gt;YouTube/Podcasts</span><br>https://www.youtube.com/user/silver<wbr>guru David Morgan<br>https://www.youtube.com/user/Sprott<wbr>Global<br>https://www.youtube.com/user/KitcoN<wbr>ews<br>https://www.youtube.com/channel/UCq<wbr>mToXM7x2tD7-2rs0KvObA Silver Bullion TV<br>https://www.youtube.com/channel/UCX<wbr>PvtSNFvh9FJrwN02crJ_A money metals exchange podcast<br>https://www.youtube.com/user/whygol<wbr>dandsilver mike maloney&#039;s channel<br>https://www.youtube.com/channel/UCl<wbr>zSFvylrK8ij3KVwrHzjdA As Good As Gold Australia",
    "replies": 116,
    "images": 34
  },
  {
    "number": 18894293,
    "time": "05/05/20(Tue)20:02:08",
    "subject": "WHAT THE HEX WAS THAT?!?!?!?!",
    "original_post": null,
    "replies": 13,
    "images": 1
  },
  {
    "number": 18891949,
    "time": "05/05/20(Tue)17:49:22",
    "subject": "/BATG/ Basic Attention Token General: Payday Edition",
    "original_post": "Its payday, Lads! What did you earn this month? <br>Let&#039;s talk some BAT/Brave.",
    "replies": 43,
    "images": 16
  },
  {
    "number": 18893012,
    "time": "05/05/20(Tue)18:46:34",
    "subject": null,
    "original_post": "The scy boys are in",
    "replies": 12,
    "images": 4
  },
  {
    "number": 18895048,
    "time": "05/05/20(Tue)20:48:11",
    "subject": "I sold 12 hours ago and am fucking seething right now",
    "original_post": "I thought I was doing the smart thing anons. I took my 50% in 10 days gain and sold. I got burned by VIDT because I held through the vote. I got dumped on so fucking hard that I took the gains this time and took my gain. <br><span class=\"quote\">&gt; Now it’s mooning</span>",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18894822,
    "time": "05/05/20(Tue)20:34:41",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;he went all in on a literal botnet</span>",
    "replies": 10,
    "images": 0
  },
  {
    "number": 18895041,
    "time": "05/05/20(Tue)20:47:31",
    "subject": "xDai Stake - Bitmax Fund&#039;s First Investment - $700K Marketcap",
    "original_post": "This has been shilled by the likes of Ethereum co-founders Joseph Lubin and Gavin Wood along with Anthony Pompliano. In a nutshell xDai is the world&#039;s first USD pegged stable platform brought to you by the POA and Maker DAO guys. It runs as an ETH sidechain using POS so you can make lightning fast transactions alongside being able to build scalable decentralized applications with a predictable and stable native currency. This was the rage at ETHDenver last year. All of the food trucks at the event ran a total of about $38K in xDAI transactions at a total fee of $0.20. Additionally Silicon Valley data firm, Splunk, used xDai to build a native currency for their own conference in 2019. Splunk is currently sitting at a marketcap of $22.8 billion. There are also many other dapps that have gone live on the platform recently as well as community inclusive currencies that are currently being used in Kenya. This might be the biggest gem out there at the moment. Do not sleep on it frens.",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18888764,
    "time": "05/05/20(Tue)15:35:45",
    "subject": "/LITGEN/ Lition General",
    "original_post": "Based edition",
    "replies": 53,
    "images": 35
  },
  {
    "number": 18892386,
    "time": "05/05/20(Tue)18:11:10",
    "subject": null,
    "original_post": "Bitcoin breaks out to 10,400 tonight. If you open a 100x long with 100 dollars you’ll make $1600. This is so easy to tell looking at the chart. DYOR AND SCREENSHOT THIS",
    "replies": 25,
    "images": 2
  },
  {
    "number": 18893166,
    "time": "05/05/20(Tue)18:55:35",
    "subject": null,
    "original_post": "What&#039;s the moment when you finally understand the value of Bitcoin/Crypto? <br>What made that idea click to you?",
    "replies": 8,
    "images": 1
  },
  {
    "number": 18894160,
    "time": "05/05/20(Tue)19:53:11",
    "subject": "Virgin Galactic is partnering with NASA to develop supersonic point-to-point air travel",
    "original_post": "https://techcrunch.com/2020/05/05/v<wbr>irgin-galactic-is-partnering-with-n<wbr>asa-to-develop-supersonic-point-to-<wbr>point-air-travel/<br><br>Pretty big news, get SPCE while its still under $20",
    "replies": 6,
    "images": 0
  },
  {
    "number": 18886737,
    "time": "05/05/20(Tue)14:17:30",
    "subject": "Let me get this straight",
    "original_post": "Over 50% of COVID deaths in UK/Europe are from care homes.<br>Average length of stay in a care home before death of natural causes is 800 days.<br>We have caused untold damage, will have record levels of economic difficulty/unemployment, and businesses close on record numbers without the governments of Europe able to bail them all out just so some coffin dodgers could live an extra 800 days in the best case scenario?<br><br>I cant tell if this is a fucking dream or real life. This makes no sense to me anymore.<br><br>UK in particular seems to be trying to avoid easing lockdowns as long as possible, like they dont want to avoid economic collapse.",
    "replies": 72,
    "images": 16
  },
  {
    "number": 18893452,
    "time": "05/05/20(Tue)19:12:36",
    "subject": "NWC TO 5 CENTS",
    "original_post": "Time to load up on cheap NWC",
    "replies": 8,
    "images": 0
  },
  {
    "number": 18893619,
    "time": "05/05/20(Tue)19:20:47",
    "subject": null,
    "original_post": "are you all ready for the post halving dump?<br><br>anon? are you? did you buy the rumor?",
    "replies": 4,
    "images": 1
  },
  {
    "number": 18894234,
    "time": "05/05/20(Tue)19:58:17",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;tfw anti Semitic</span>",
    "replies": 11,
    "images": 3
  },
  {
    "number": 18894343,
    "time": "05/05/20(Tue)20:05:31",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;Now is obviously bull trapping</span><br><span class=\"quote\">&gt;Putting all your money to the stonk market</span><br><br>Why would you do that biz?",
    "replies": 10,
    "images": 1
  },
  {
    "number": 18891732,
    "time": "05/05/20(Tue)17:39:44",
    "subject": "OIL PUMP: WHEN?",
    "original_post": "TOMORROW. SEE YOU THERE.",
    "replies": 20,
    "images": 1
  },
  {
    "number": 18893460,
    "time": "05/05/20(Tue)19:13:21",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;klonopin binge</span><br><span class=\"quote\">&gt;come to senses</span><br><span class=\"quote\">&gt;down 3 mil</span>",
    "replies": 9,
    "images": 0
  },
  {
    "number": 18894780,
    "time": "05/05/20(Tue)20:32:19",
    "subject": null,
    "original_post": "How many BTC to &quot;Make it&quot; by 2023? (3 Million USD value)",
    "replies": 4,
    "images": 0
  },
  {
    "number": 18894865,
    "time": "05/05/20(Tue)20:37:01",
    "subject": null,
    "original_post": "FED keeps printing trillions and trillions of dollars. Are there no consequences for this? What is money anyway? Is dollar just worthless in long run? Trump is bragging about dollar being so strong, hence no consequences. but for how long?",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18894855,
    "time": "05/05/20(Tue)20:36:34",
    "subject": null,
    "original_post": "I have saved up 5000 and want to buy a car cash at a car lot that is like 4000 (but after taxes and registration I think it it will basically be 5000). My friend said I should buy it with my credit card I never used because I despise borrowing money. But if I have the cash to pay it off will it help my credit if I just pay off the card when the payment is due?",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18889479,
    "time": "05/05/20(Tue)15:56:51",
    "subject": "GET INTO LCX NOW RETARDS",
    "original_post": null,
    "replies": 29,
    "images": 8
  },
  {
    "number": 18894795,
    "time": "05/05/20(Tue)20:33:12",
    "subject": "Chromia binance listing",
    "original_post": "Get ready. It will pump until 11pm",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18893971,
    "time": "05/05/20(Tue)19:41:38",
    "subject": null,
    "original_post": "WTF why has the middle class gotten lazier over time? If they worked harder they would be paid more! This proves that boomers really were the best generation.",
    "replies": 5,
    "images": 0
  },
  {
    "number": 18893204,
    "time": "05/05/20(Tue)18:57:55",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;Tfw missed out on HEX</span>",
    "replies": 45,
    "images": 7
  },
  {
    "number": 18892937,
    "time": "05/05/20(Tue)18:42:38",
    "subject": null,
    "original_post": "Bitcoin is a scam, buy gold",
    "replies": 12,
    "images": 4
  },
  {
    "number": 18891332,
    "time": "05/05/20(Tue)17:21:39",
    "subject": "Is /pol/ allowed in the citadel?",
    "original_post": "<a href=\"//boards.4chan.org/pol/thread/256319872#p256319872\" class=\"quotelink\">&gt;&gt;&gt;/pol/256319872</a>",
    "replies": 17,
    "images": 4
  },
  {
    "number": 18894247,
    "time": "05/05/20(Tue)19:59:00",
    "subject": null,
    "original_post": "So after the economy fully reopens and the housing market collapses, is it going to be in favor of people looking to buy houses/land or against?<br>Assuming great credit and a sizeable down payment of course.",
    "replies": 2,
    "images": 0
  },
  {
    "number": 18892301,
    "time": "05/05/20(Tue)18:06:48",
    "subject": null,
    "original_post": "https://torontostoreys.com/cibc-can<wbr>adian-home-prices-forecast/<br><br>WE ALL FALL DOWN LIKE TOY SOLDIERS<br><br>RIP TORONTO",
    "replies": 8,
    "images": 0
  },
  {
    "number": 18894715,
    "time": "05/05/20(Tue)20:27:46",
    "subject": "Who should win?",
    "original_post": "https://www.strawpoll.me/19957634/",
    "replies": 2,
    "images": 1
  },
  {
    "number": 18894714,
    "time": "05/05/20(Tue)20:27:34",
    "subject": "Which one is /biz taking?",
    "original_post": null,
    "replies": 1,
    "images": 0
  },
  {
    "number": 18894646,
    "time": "05/05/20(Tue)20:23:30",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;*snib*</span><br><span class=\"quote\">&gt;8800</span><br><span class=\"quote\">&gt;9050</span><br><span class=\"quote\">&gt;8800</span><br><span class=\"quote\">&gt;9050</span><br><span class=\"quote\">&gt;8800</span><br><span class=\"quote\">&gt;9050</span><br><span class=\"quote\">&gt;*snib*</span>",
    "replies": 2,
    "images": 2
  },
  {
    "number": 18891039,
    "time": "05/05/20(Tue)17:07:16",
    "subject": null,
    "original_post": "What is the value proposition that drives the hiring of minorities and women?",
    "replies": 23,
    "images": 4
  },
  {
    "number": 18891055,
    "time": "05/05/20(Tue)17:08:14",
    "subject": "RLC:",
    "original_post": "This is a RLC thread.",
    "replies": 6,
    "images": 1
  },
  {
    "number": 18893867,
    "time": "05/05/20(Tue)19:35:42",
    "subject": "Pajeet vs Ahmed",
    "original_post": "Do they have crypto gang violence in India? Are there roaming clouds of shit that collide and just start throwing coins all over the place? Do they attack wifi towers in rival coin’s turf and leave a pile of their worthless shitcoins to mark their work? Do they pillage and burn their enemy’s meme stashes while they’re away spamming on /biz/?<br><br>Most importantly, how can i profit off this",
    "replies": 1,
    "images": 0
  },
  {
    "number": 18894645,
    "time": "05/05/20(Tue)20:23:29",
    "subject": null,
    "original_post": "Putting economic policy before fiscal responsibility is like putting the cart before the horse.",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18894612,
    "time": "05/05/20(Tue)20:21:20",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;tfw not paying many attention to stocks and YOLOing all my money on shitcoins like ETH </span><br><br>man I hope this works out",
    "replies": 2,
    "images": 0
  },
  {
    "number": 18892079,
    "time": "05/05/20(Tue)17:55:36",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;mfw I had no money as child to buy all the stuff I wanted and now having money but no interest in it anymore</span><br><br>Why is does it have to be like this?",
    "replies": 15,
    "images": 5
  },
  {
    "number": 18885261,
    "time": "05/05/20(Tue)13:08:14",
    "subject": "What&#039;s the next 100x cryptogem?",
    "original_post": "Please unironical answers only",
    "replies": 27,
    "images": 4
  },
  {
    "number": 18893616,
    "time": "05/05/20(Tue)19:20:43",
    "subject": "I&#039;ll just leave this here...",
    "original_post": null,
    "replies": 20,
    "images": 3
  },
  {
    "number": 18894001,
    "time": "05/05/20(Tue)19:43:13",
    "subject": null,
    "original_post": "I come here to shit on linkies and nothing else.",
    "replies": 9,
    "images": 1
  },
  {
    "number": 18886675,
    "time": "05/05/20(Tue)14:15:11",
    "subject": "indoor rancher general",
    "original_post": "how my fellow indoor ranchers doin today?",
    "replies": 84,
    "images": 22
  },
  {
    "number": 18892591,
    "time": "05/05/20(Tue)18:23:51",
    "subject": null,
    "original_post": "I&#039;ve only been learning how to trade for about a week yet I already feel smarter than half this board<br><br>Is that a sign that I&#039;m actually much dumber than I think I am, or is this board just very stupid",
    "replies": 24,
    "images": 2
  },
  {
    "number": 18886997,
    "time": "05/05/20(Tue)14:25:59",
    "subject": null,
    "original_post": "Good shit Skyjeets, good thing I listened and bought a bag,<br>ready for the imminent run back to $3usd, hold me tight.",
    "replies": 43,
    "images": 11
  },
  {
    "number": 18894551,
    "time": "05/05/20(Tue)20:17:47",
    "subject": null,
    "original_post": "if you could choose just ONE, which would you pick, FTM or DAG?",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18894106,
    "time": "05/05/20(Tue)19:49:32",
    "subject": null,
    "original_post": "Inversed Jim and now I&#039;m broke. Fuck you biz.",
    "replies": 2,
    "images": 0
  },
  {
    "number": 18885257,
    "time": "05/05/20(Tue)13:07:59",
    "subject": "Is it worth buying?",
    "original_post": "Guys at what point should you buy one of these?",
    "replies": 59,
    "images": 2
  },
  {
    "number": 18894282,
    "time": "05/05/20(Tue)20:01:26",
    "subject": "We are all going to make it.",
    "original_post": "<span class=\"quote\">&gt;Work in the U.S and save money</span><br><span class=\"quote\">&gt;go to Serbia/Slovakia/Russia/Ukraine etc.</span><br><span class=\"quote\">&gt;buy houses/apartments</span><br><span class=\"quote\">&gt;rent them out</span><br><span class=\"quote\">&gt;live off of the passive income like a king with extra money left over for travel, going out, making a home gym etc.</span><br>Apartments in Eastern Europe are between $50,000-150,000. Monthly expenses are around $600-1000, rent included ($300). How is this not an out for people stuck in the U.S, completely blackpilled on women and culture?<br>United States has been turned into an economic zone, stripped of any culture and spiritual meaning. You are aware of this, which puts you ahead of the most. Make the best of it if you are still young, I know I am.",
    "replies": 1,
    "images": 0
  },
  {
    "number": 18894327,
    "time": "05/05/20(Tue)20:04:31",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;BTC was around $210 at the time of the post</span><br><br>Do you think OP made it?",
    "replies": 3,
    "images": 0
  },
  {
    "number": 18894219,
    "time": "05/05/20(Tue)19:57:07",
    "subject": "Lition",
    "original_post": "Every Lition Thread died all at once, remind me how this isn&#039;t a Satsgang PnD again?",
    "replies": 3,
    "images": 0
  },
  {
    "number": 18893408,
    "time": "05/05/20(Tue)19:10:28",
    "subject": null,
    "original_post": "how much does this girl make from streaming? thinking of finding myself a gf to whore out to nerds on twitch to make some income",
    "replies": 16,
    "images": 4
  },
  {
    "number": 18891246,
    "time": "05/05/20(Tue)17:17:15",
    "subject": "What happens when you make it?",
    "original_post": "I keep wondering. What I would do when I would make it. And I have not a clue...What would do frens?<br>Fuck escorts?<br>Get a massive house?<br>Tell me.",
    "replies": 32,
    "images": 2
  },
  {
    "number": 18894272,
    "time": "05/05/20(Tue)20:00:42",
    "subject": null,
    "original_post": "I know it&#039;s a scam but godamn I&#039;m going to ride it until the last possible second",
    "replies": 9,
    "images": 3
  },
  {
    "number": 18894379,
    "time": "05/05/20(Tue)20:08:00",
    "subject": null,
    "original_post": "Stop shilling this fucking stinker, it’s not going anywhere. Enjoy your bags.",
    "replies": 1,
    "images": 1
  },
  {
    "number": 18887858,
    "time": "05/05/20(Tue)14:58:34",
    "subject": null,
    "original_post": "stop feeding the parasite that is Blockstream. don&#039;t buy Bitcoin.",
    "replies": 72,
    "images": 16
  },
  {
    "number": 18894046,
    "time": "05/05/20(Tue)19:45:59",
    "subject": "absolute state of decred",
    "original_post": "<span class=\"quote\">&gt;muh hedge to btc</span><br><br>dcr/btc only going down<br><br><span class=\"quote\">&gt;muh decentralized governance and treasury</span><br><br>approved only shit proposals bc stakeholders are brainlets<br><br><span class=\"quote\">&gt;muh DEX</span><br><br>carrot on the stick by devs<br><br><span class=\"quote\">&gt;decred</span><br><br>dickred",
    "replies": 3,
    "images": 0
  },
  {
    "number": 18894142,
    "time": "05/05/20(Tue)19:52:10",
    "subject": null,
    "original_post": "I&#039;m so tired of life and so tired of being poor. What the fuck do I do? Honestly considering suicide at this point",
    "replies": 1,
    "images": 0
  },
  {
    "number": 18894341,
    "time": "05/05/20(Tue)20:05:28",
    "subject": null,
    "original_post": "Do you over leverage or do you<br>under leverage? Im more of a mid leverager myself I just want /biz/&#039;s opinion",
    "replies": 2,
    "images": 0
  },
  {
    "number": 18894351,
    "time": "05/05/20(Tue)20:06:12",
    "subject": null,
    "original_post": "ITS OVER NINE THOUSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA<wbr>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN<wbr>D",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18892684,
    "time": "05/05/20(Tue)18:28:37",
    "subject": "NAV",
    "original_post": "Post your net asset value<br>Cash and equivalents: ~$30k<br>IRA (Vanguard growth index fund) ~$7300<br>401k (some 2045 target retirement fund) ~$12000<br>2013 Honda Civic loan -$3000<br><br>$46,300",
    "replies": 9,
    "images": 3
  },
  {
    "number": 18893918,
    "time": "05/05/20(Tue)19:38:44",
    "subject": null,
    "original_post": "Sergey Speaks Tomorrow. <br>Little Pump and Major Dump.<br>Halvening Occurs 22x Pump.<br>Slowly dumps over time.",
    "replies": 6,
    "images": 0
  },
  {
    "number": 18891571,
    "time": "05/05/20(Tue)17:32:49",
    "subject": "/smg/ - Stock Market General",
    "original_post": "South Sea Bubble of 1720<br><br><span class=\"quote\">&gt;Brokers</span><br>https://pastebin.com/F1yujtVq<br><br><span class=\"quote\">&gt;Stock market Words</span><br>https://pastebin.com/VtnpN5iJ<br><br><span class=\"quote\">&gt;Risk Management</span><br>https://pastebin.com/sqJUcbjp<br><br><span class=\"quote\">&gt;Live Bloomberg Stream</span><br>http://www.livenewson.com/american/<wbr>bloomberg-television-business.html<br><br><span class=\"quote\">&gt;Educational Sites</span><br>https://www.investopedia.com/<br>https://www.khanacademy.org/economi<wbr>cs-finance-domain<br>https://nhentai.net/tag/crossdressi<wbr>ng/<br><br><span class=\"quote\">&gt;Free Charts</span><br>http://www.tradingview.com<br>https://www.finscreener.com/<br><br><span class=\"quote\">&gt;Screeners</span><br>https://finviz.com/<br>https://www.tradingview.com/screene<wbr>r<br>https://etfdb.com/<br><br><span class=\"quote\">&gt;Pre-Market Data and Live Data</span><br>https://www.investing.com/indices/i<wbr>ndices-futures<br>https://finance.yahoo.com/<br><br><span class=\"quote\">&gt;Bio-pharma Catalyst Calendar</span><br>https://biopharmcatalyst.com<br><br><span class=\"quote\">&gt;Boomer Investing 101</span><br>https://www.bogleheads.org/wiki/Get<wbr>ting_started<br><br><span class=\"quote\">&gt;Dividend Reinvestment (DRIP) Calculator</span><br>https://www.dividendchannel.com/dri<wbr>p-returns-calculator/<br><br><span class=\"quote\">&gt;List of hedge fund holdings</span><br>https://fintel.io/<br><br><span class=\"quote\">&gt;Misc</span><br>https://squeezemetrics.com/monitor<br>https://market24hclock.com/<br><br><a href=\"/biz/thread/18889964#p18889964\" class=\"quotelink\">&gt;&gt;18889964</a>",
    "replies": 344,
    "images": 65
  },
  {
    "number": 18892188,
    "time": "05/05/20(Tue)18:00:49",
    "subject": "XRP has officially cucked chainlink",
    "original_post": "is this what you wanted? :)",
    "replies": 34,
    "images": 3
  },
  {
    "number": 18894248,
    "time": "05/05/20(Tue)19:59:01",
    "subject": null,
    "original_post": "Waiting for at least a 40% pump this week on Sky.<br><br>Get ready and buy a bag before sky breaks out of this pennant.",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18893472,
    "time": "05/05/20(Tue)19:13:51",
    "subject": "Where is 42 at?",
    "original_post": "I need some new mind bending fibonacci patterns.",
    "replies": 5,
    "images": 1
  },
  {
    "number": 18892149,
    "time": "05/05/20(Tue)17:59:11",
    "subject": null,
    "original_post": "It looks like things are beginning to stabilize. Is the Fed going to successfully print its way out of another disaster? If so what does this mean for the future?",
    "replies": 12,
    "images": 1
  },
  {
    "number": 18884678,
    "time": "05/05/20(Tue)12:39:58",
    "subject": "7 FIGURE MEDIA BUDGET",
    "original_post": "NON-LITIANS BTFO.<br><br>https://medium.com/@mstephenw5/liti<wbr>on-enters-brand-partnership-with-sp<wbr>arwelt-rtl-to-drive-blockchain-powe<wbr>red-green-energy-badb2e2ac023",
    "replies": 60,
    "images": 13
  },
  {
    "number": 18888444,
    "time": "05/05/20(Tue)15:22:51",
    "subject": "Something is brewing with Tellor TRB",
    "original_post": "500 ETH in volume today. Community call tomorrow - what will be revealed?",
    "replies": 9,
    "images": 0
  },
  {
    "number": 18894217,
    "time": "05/05/20(Tue)19:57:03",
    "subject": null,
    "original_post": "<span class=\"quote\">&gt;day 870 of the crypto bear market</span>",
    "replies": 2,
    "images": 1
  },
  {
    "number": 18891962,
    "time": "05/05/20(Tue)17:49:55",
    "subject": null,
    "original_post": "Am holding SQQQ and im getting real tired of this clown economy.<br><br>There&#039;s not gonna be some reverse split bullshit to punish us any further, right?",
    "replies": 15,
    "images": 0
  },
  {
    "number": 18893103,
    "time": "05/05/20(Tue)18:51:14",
    "subject": null,
    "original_post": "you now realize the Halfing will happen on Monday. have a nice day.",
    "replies": 5,
    "images": 3
  },
  {
    "number": 18893756,
    "time": "05/05/20(Tue)19:29:26",
    "subject": "Describe Chainlink using one image",
    "original_post": "Pic related",
    "replies": 8,
    "images": 7
  },
  {
    "number": 18893687,
    "time": "05/05/20(Tue)19:25:40",
    "subject": null,
    "original_post": "March sucked<br>April sucked<br>May is looking bad<br>when will things get better",
    "replies": 2,
    "images": 1
  },
  {
    "number": 18892694,
    "time": "05/05/20(Tue)18:29:00",
    "subject": "ETH",
    "original_post": "Can eth 100x in the next 2 years?",
    "replies": 11,
    "images": 0
  },
  {
    "number": 18892436,
    "time": "05/05/20(Tue)18:14:05",
    "subject": null,
    "original_post": "Is being a well off blue collar type the most comfy lifestyle?<br><br><span class=\"quote\">&gt;Cool tools</span><br><span class=\"quote\">&gt;Women love thugs, chads and country boys</span><br><span class=\"quote\">&gt;Skill set can&#039;t be outsourced</span><br><span class=\"quote\">&gt;Fun outdoor activities</span><br><span class=\"quote\">&gt;BBQ&#039;s</span>",
    "replies": 6,
    "images": 0
  },
  {
    "number": 18894186,
    "time": "05/05/20(Tue)19:55:14",
    "subject": "$ANTS AIRDROP THREAD",
    "original_post": "it&#039;s that time again, post eth addresses<br><br>What is $ANTS? Join the discord: /Fe3SXdU for more info and airdrops (happening now)<br>/Fe3SXdU",
    "replies": 0,
    "images": 0
  },
  {
    "number": 18893276,
    "time": "05/05/20(Tue)19:02:34",
    "subject": "This kills the Monero",
    "original_post": null,
    "replies": 4,
    "images": 1
  },
  {
    "number": 18892332,
    "time": "05/05/20(Tue)18:08:28",
    "subject": "??",
    "original_post": "??",
    "replies": 19,
    "images": 5
  },
  {
    "number": 18893521,
    "time": "05/05/20(Tue)19:15:50",
    "subject": "Does LN even work?",
    "original_post": "If LN is real I should be able to receive 1$ to send without insane fees.",
    "replies": 13,
    "images": 3
  },
  {
    "number": 18886652,
    "time": "05/05/20(Tue)14:14:34",
    "subject": "The Quant drop will be Epic",
    "original_post": "They couldn&#039;t even seal the deal with a binance listing. <br>Connected binance chain a year ago and still on idex.. kek<br>Binance laughed at them. Kek<br><br>What the fuck have they even done? <br><br>No proof of anything accomplished. <br><br>Even the new product interchange, didn&#039;t work on the demo and not one fucking piece of information on it from the team has come out.<br><br>Q2 is going to be a disaster",
    "replies": 111,
    "images": 25
  },
  {
    "number": 18893018,
    "time": "05/05/20(Tue)18:46:45",
    "subject": null,
    "original_post": "Chromia has about five hours of pumping left until the binance competition ends. Dump at least 10 minutes before the result because both contestants will hit all time low after the result is published.",
    "replies": 4,
    "images": 1
  },
  {
    "number": 18893358,
    "time": "05/05/20(Tue)19:07:34",
    "subject": null,
    "original_post": "i sweat to god if bitcoin dumps below 8600 one more time i am going 125x short. it can&#039;t just keep going up",
    "replies": 11,
    "images": 2
  },
  {
    "number": 18891405,
    "time": "05/05/20(Tue)17:24:55",
    "subject": null,
    "original_post": "CHECK HEX PRICES",
    "replies": 18,
    "images": 2
  },
  {
    "number": 18893517,
    "time": "05/05/20(Tue)19:15:42",
    "subject": "Tech business",
    "original_post": "based buisiness?<br>I thought about technician businesses like phone/computer service. Im sick of working for someone, 4real if i don’t make company then im must shoot myself lol",
    "replies": 3,
    "images": 0
  }
]
Parameter Type Description
number int Post number.
time string Timestamp of posted message.
subject string Subject of post.
original_post string Original post.
replies int Number of replies.
images int Number of images.

TwitterSearch

Sample Data

{
  "keyword": "%24btc",
  "result_type": "popular",
  "tweet_count": "15"
}

Searches Twitter for tweets based on user inputs. Search is limited to 1 week history.

Notes:

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["%24btc","popular","15"]' https://api.maplenodes.com/v1/TwitterSearch

TwitterSearch [keyword] [result_type] [tweet_count]

Parameter Type Description
keyword string Keyword to search.
result_type string Filter by: recent, popular, mixed.
tweet_count int Number of tweets to display (15-100).

Response Parameters

Sample 200 Response

[
  {
    "tweeted_by": "Binance",
    "@user": "binance",
    "tweet_time": "Mon May 04 22:30:30 +0000 2020",
    "tweet": "#BinanceFutures \"Top Traders\" positions on the daily time frame:\n\n$BTC Long 54.57%\n$ETH Long 51.26%\n$BCH Long 50.45%\n$XRP Long 51.12%\n$EOS Long 50.60%\n$LTC Long 51.43%\n$TRX Long 54.40%\n$ETC Long 51.62%\n$LINK Long 52.10%\n$XLM Long 57.78%\n\nTrade here:\n➡️ https://t.co/jkiHuCEZjO https://t.co/1NTikEkkWC",
    "retweet_count": 40,
    "favorite_count": 90
  },
  {
    "tweeted_by": "Kris Humphries",
    "@user": "KrisHumphries",
    "tweet_time": "Mon May 04 21:26:48 +0000 2020",
    "tweet": "How is everyone thinking the halving will affect $Link if at all? Will an increase in $BTC lift the price of all crypto assets?\n\n#chainlink #bitcoin #ethereum",
    "retweet_count": 44,
    "favorite_count": 351
  },
  {
    "tweeted_by": "The Wolf Of All Streets",
    "@user": "scottmelker",
    "tweet_time": "Tue May 05 16:13:26 +0000 2020",
    "tweet": "Chatter about the $BTC halving is giving me strong Y2K vibes.",
    "retweet_count": 50,
    "favorite_count": 287
  },
  {
    "tweeted_by": "Huobi",
    "@user": "HuobiGlobal",
    "tweet_time": "Tue May 05 04:51:50 +0000 2020",
    "tweet": "#Bitcoin just hit 9k! \n🤔Will $BTC hit $10k before the halving?",
    "retweet_count": 33,
    "favorite_count": 80
  },
  {
    "tweeted_by": "Huobi",
    "@user": "HuobiGlobal",
    "tweet_time": "Mon May 04 08:50:21 +0000 2020",
    "tweet": "#Huobi Futures accounts are 57% long $BTC/USD overall on the daily time frame.\n\nAre you a🐂or🐻on $BTC right now?\n\n⬇️ Trade on #HuobiFutures today!\n\nhttps://t.co/pBDEZPW48P",
    "retweet_count": 23,
    "favorite_count": 48
  },
  {
    "tweeted_by": "Crypto.com",
    "@user": "cryptocom",
    "tweet_time": "Thu Apr 30 05:35:54 +0000 2020",
    "tweet": "Presenting https://t.co/vCNztABJoG Halving Special, with 50% off on $BTC on 12 May on https://t.co/vCNztABJoG Exchange-$1M allocation- No CRO staking required🔥Sign up now! https://t.co/bq8A5wmHlw\nWe're also giving away $100K in #BTC. Follow &amp; RT for a chance to receive $250. https://t.co/6VoovyfDce",
    "retweet_count": 15539,
    "favorite_count": 13186
  },
  {
    "tweeted_by": "Independent Reserve",
    "@user": "indepreserve",
    "tweet_time": "Mon May 04 22:59:16 +0000 2020",
    "tweet": "The relative #Bitcoin market size compared to Gold, the US Federal Reserve balance sheet (including expected 2020 QE) and global currency supply.\n\n𝗬𝗼𝘂 𝗮𝗿𝗲 𝘀𝘁𝗶𝗹𝗹 𝗲𝗮𝗿𝗹𝘆. \n\nData courtesy of                 @glassnode \n\n$BTC https://t.co/Mg2O8NVU0B",
    "retweet_count": 43,
    "favorite_count": 89
  },
  {
    "tweeted_by": "ShapeShift 🦊",
    "@user": "ShapeShift_io",
    "tweet_time": "Tue May 05 17:20:54 +0000 2020",
    "tweet": "Do you want to win #BTC or #ETH in our next giveaway? \n🎁🎁🎁🎁🎁🎁🎁🎁🎁🎁🎁\n#bitcoin $BTC $ETH #crypto #CryptoGiveaway",
    "retweet_count": 36,
    "favorite_count": 68
  },
  {
    "tweeted_by": "Grayscale",
    "@user": "GrayscaleInvest",
    "tweet_time": "Tue May 05 21:01:10 +0000 2020",
    "tweet": "05/05/20 UPDATE: Net Assets Under Management, Holdings per Share, and Market Price per Share for our Investment Products.\n\nTotal AUM: $3.3 billion\n\n$BTC $BCH $ETH $ETC $ZEN $LTC $XLM $XRP $ZEC https://t.co/2ChuLGVEMn",
    "retweet_count": 10,
    "favorite_count": 24
  },
  {
    "tweeted_by": "Raoul Pal",
    "@user": "RaoulGMI",
    "tweet_time": "Tue May 05 23:54:09 +0000 2020",
    "tweet": "We are just mulling over an idea at @RealVision and wanted your input. Would you be interested in a RV Crytpo/Digital add-on membership tier where we purely focus on that space? Obviously, we would need to charge (in $ and crypto) for it as it means more production etc. $BTC",
    "retweet_count": 14,
    "favorite_count": 264
  },
  {
    "tweeted_by": "Crypto.com",
    "@user": "cryptocom",
    "tweet_time": "Thu Apr 30 07:00:20 +0000 2020",
    "tweet": "💡Quiz time🧠\n\nQ: You referred 5 friends to sign up for https://t.co/vCNztATkNg App, 3 of them got their metal cards, how much did you get?\n\n10 winners to share $1,000 USD in $BTC who:\n✅Follow\n✅Like\n✅Retweet w/ #CryptoComQuiz\n✅Answer below 👇 https://t.co/3yE2PM5QxG",
    "retweet_count": 1704,
    "favorite_count": 3788
  },
  {
    "tweeted_by": "Kraken Exchange",
    "@user": "krakenfx",
    "tweet_time": "Mon May 04 01:50:00 +0000 2020",
    "tweet": "Q: What do you make of $BTC's big March price decline? \n\n@danheld: \"#Bitcoin performed phenomenally well. It survived a global pandemic without any banks or pedigreed institutions to back-stop it.\"\n\nGet more insights in Dan's latest #halving Q&amp;A below 👇\n\nhttps://t.co/DbbhtMcrB8",
    "retweet_count": 24,
    "favorite_count": 72
  },
  {
    "tweeted_by": "Kraken Exchange",
    "@user": "krakenfx",
    "tweet_time": "Tue May 05 18:55:00 +0000 2020",
    "tweet": "Q: What was it like to see $BTC's price spike in 2013? \n\n@danheld: \"It was validation I wasn't crazy. If you believed in #Bitcoin then, you felt a little nuts. It was nice to feel this might be bigger.\"\n\nDon't miss Dan's talk w/ @APompliano, watch below👇\n\nhttps://t.co/lCKYQwU3uJ",
    "retweet_count": 7,
    "favorite_count": 38
  },
  {
    "tweeted_by": "Binance.US 🇺🇸"  ,
    "@user": "BinanceAmerica",
    "tweet_time": "Mon May 04 02:00:26 +0000 2020",
    "tweet": "If $BTC is Michael Jordan, $____ is Dennis Rodman.\n#LastDance https://t.co/r8ekKj9Q7H",
    "retweet_count": 18,
    "favorite_count": 57
  },
  {
    "tweeted_by": "Independent Reserve",
    "@user": "indepreserve",
    "tweet_time": "Tue May 05 22:33:06 +0000 2020",
    "tweet": "The perpetual growth cycle of #Bitcoin\n\n\",
    "retweet_count": 7,
    "favorite_count": 18
  }
]  
Parameter Type Description
tweeted_by string Tweeted by user.
@user string Twitter handle.
tweet_time string Timestamp of tweet.
tweet string Message body.
retweet_count int Count of retweets.
favorite_count int Count of favorites.

Sport Services

Call Description
LiveSportsOdds Displays live sports odds data from bookmakers located in the United States, United Kingdom and Australia. Currently only head-to-head (moneyline) data is available.
LiveSportsOddsList Displays a list of sports available to view head-to-head (moneyline) odds.

LiveSportsOdds

Sample Data

{
  "id_key": "americanfootball_nfl",
  "region": "us"
}

Displays live sports odds data from bookmakers located in the United States, United Kingdom and Australia. Currently only head-to-head (moneyline) data is available.

Notes:

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["americanfootball_nfl","us"]' https://api.maplenodes.com/v1/LiveSportsOdds

LiveSportsOdds [id_key] [region]

Parameter Type Description
id_key string ID key of league.
region string Bookmakers region: us, uk and au.

Response Parameters

Sample 200 Response

[
  {
    "league": "NFL",
    "teams": [
      "Cincinnati Bengals",
      "New York Giants"
    ],
    "home_team": "Cincinnati Bengals",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Baltimore Ravens",
      "New York Giants"
    ],
    "home_team": "Baltimore Ravens",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Cleveland Browns",
      "New York Giants"
    ],
    "home_team": "New York Giants",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Giants",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "New York Giants",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Dallas Cowboys",
      "New York Giants"
    ],
    "home_team": "Dallas Cowboys",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Giants",
      "Pittsburgh Steelers"
    ],
    "home_team": "New York Giants",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Los Angeles Rams",
      "New York Giants"
    ],
    "home_team": "Los Angeles Rams",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Giants",
      "Washington Redskins"
    ],
    "home_team": "Washington Redskins",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Chicago Bears",
      "New York Giants"
    ],
    "home_team": "Chicago Bears",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Giants",
      "Seattle Seahawks"
    ],
    "home_team": "Seattle Seahawks",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Giants",
      "Philadelphia Eagles"
    ],
    "home_team": "New York Giants",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Giants",
      "San Francisco 49ers"
    ],
    "home_team": "New York Giants",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Arizona Cardinals",
      "New York Giants"
    ],
    "home_team": "New York Giants",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Philadelphia Eagles",
      "Pittsburgh Steelers"
    ],
    "home_team": "Pittsburgh Steelers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Cleveland Browns",
      "Philadelphia Eagles"
    ],
    "home_team": "Cleveland Browns",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Baltimore Ravens",
      "Philadelphia Eagles"
    ],
    "home_team": "Philadelphia Eagles",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New Orleans Saints",
      "Philadelphia Eagles"
    ],
    "home_team": "Philadelphia Eagles",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Dallas Cowboys",
      "Philadelphia Eagles"
    ],
    "home_team": "Dallas Cowboys",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Cincinnati Bengals",
      "Philadelphia Eagles"
    ],
    "home_team": "Philadelphia Eagles",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Arizona Cardinals",
      "Philadelphia Eagles"
    ],
    "home_team": "Arizona Cardinals",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Philadelphia Eagles",
      "Washington Redskins"
    ],
    "home_team": "Washington Redskins",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Green Bay Packers",
      "Philadelphia Eagles"
    ],
    "home_team": "Green Bay Packers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Philadelphia Eagles",
      "San Francisco 49ers"
    ],
    "home_team": "San Francisco 49ers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Los Angeles Chargers",
      "New York Jets"
    ],
    "home_team": "Los Angeles Chargers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Kansas City Chiefs",
      "New York Jets"
    ],
    "home_team": "Kansas City Chiefs",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Jets",
      "Seattle Seahawks"
    ],
    "home_team": "Seattle Seahawks",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Philadelphia Eagles",
      "Seattle Seahawks"
    ],
    "home_team": "Philadelphia Eagles",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Los Angeles Rams",
      "Philadelphia Eagles"
    ],
    "home_team": "Philadelphia Eagles",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Denver Broncos",
      "New York Jets"
    ],
    "home_team": "New York Jets",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Arizona Cardinals",
      "New York Jets"
    ],
    "home_team": "New York Jets",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Cleveland Browns",
      "New York Jets"
    ],
    "home_team": "New York Jets",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New England Patriots",
      "New York Jets"
    ],
    "home_team": "New England Patriots",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New York Jets",
      "San Francisco 49ers"
    ],
    "home_team": "New York Jets",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Miami Dolphins",
      "New York Jets"
    ],
    "home_team": "Miami Dolphins",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Buffalo Bills",
      "New York Jets"
    ],
    "home_team": "Buffalo Bills",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Indianapolis Colts",
      "New York Jets"
    ],
    "home_team": "Indianapolis Colts",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Los Angeles Rams",
      "New York Jets"
    ],
    "home_team": "Los Angeles Rams",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Kansas City Chiefs",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Carolina Panthers",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Green Bay Packers",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Atlanta Falcons",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Los Angeles Rams",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Minnesota Vikings",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Los Angeles Chargers",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New Orleans Saints",
      "Tampa Bay Buccaneers"
    ],
    "home_team": "Tampa Bay Buccaneers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "San Francisco 49ers",
      "Seattle Seahawks"
    ],
    "home_team": "San Francisco 49ers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "New England Patriots",
      "Seattle Seahawks"
    ],
    "home_team": "Seattle Seahawks",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Chicago Bears",
      "Detroit Lions"
    ],
    "home_team": "Chicago Bears",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Chicago Bears",
      "Minnesota Vikings"
    ],
    "home_team": "Chicago Bears",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Indianapolis Colts",
      "Tennessee Titans"
    ],
    "home_team": "Indianapolis Colts",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Houston Texans",
      "Indianapolis Colts"
    ],
    "home_team": "Indianapolis Colts",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Indianapolis Colts",
      "Jacksonville Jaguars"
    ],
    "home_team": "Indianapolis Colts",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Chicago Bears",
      "Green Bay Packers"
    ],
    "home_team": "Chicago Bears",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Cleveland Browns",
      "Pittsburgh Steelers"
    ],
    "home_team": "Pittsburgh Steelers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Cincinnati Bengals",
      "Pittsburgh Steelers"
    ],
    "home_team": "Pittsburgh Steelers",
    "source_site": []
  },
  {
    "league": "NFL",
    "teams": [
      "Baltimore Ravens",
      "Pittsburgh Steelers"
    ],
    "home_team": "Pittsburgh Steelers",
    "source_site": []
  }
]
Parameter Type Description
league string Professional league.
teams array Teams playing against each other.
home_team string Team playing at home.
source_site array Bookmakers data.
site_key string Bookmaker.
site_nice string Bookmaker.
last_updated string Timestamp of last updated odds.
odds array Array of sporting odds data.
h2h array Array of h2h odds data.
h2h_lay array Array of h2h_lay odds data.

LiveSportsOddsList

Sample Data

{
  "view_all": 0
}

Displays a list of sports available to view head-to-head (moneyline) odds.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '["0"]' https://api.maplenodes.com/v1/LiveSportsOddsList

LiveSportsOddsList [view_all]

Parameter Type Description
view_all int 0 = in-season only, 1 = in & off-season

Response Parameters

Sample 200 Response

[
  {
    "league": "NCAAF",
    "in_season": true,
    "id_key": "americanfootball_ncaaf"
  },
  {
    "league": "NFL",
    "in_season": true,
    "id_key": "americanfootball_nfl"
  },
  {
    "league": "AFL",
    "in_season": false,
    "id_key": "aussierules_afl"
  },
  {
    "league": "MLB",
    "in_season": false,
    "id_key": "baseball_mlb"
  },
  {
    "league": "Basketball Euroleague",
    "in_season": false,
    "id_key": "basketball_euroleague"
  },
  {
    "league": "NBA",
    "in_season": false,
    "id_key": "basketball_nba"
  },
  {
    "league": "NCAAB",
    "in_season": false,
    "id_key": "basketball_ncaab"
  },
  {
    "league": "Asia Cup",
    "in_season": false,
    "id_key": "cricket_asia_cup"
  },
  {
    "league": "Big Bash",
    "in_season": false,
    "id_key": "cricket_big_bash"
  },
  {
    "league": "ICC Champions",
    "in_season": false,
    "id_key": "cricket_icc_trophy"
  },
  {
    "league": "ICC World Cup",
    "in_season": false,
    "id_key": "cricket_icc_world_cup"
  },
  {
    "league": "IPL",
    "in_season": false,
    "id_key": "cricket_ipl"
  },
  {
    "league": "IPL T20",
    "in_season": false,
    "id_key": "cricket_ipl_t20"
  },
  {
    "league": "One Day Internationals",
    "in_season": false,
    "id_key": "cricket_odi"
  },
  {
    "league": "Natwest T20 Blast",
    "in_season": false,
    "id_key": "cricket_t20_natwest"
  },
  {
    "league": "Test Matches",
    "in_season": false,
    "id_key": "cricket_test_match"
  },
  {
    "league": "League of Legends",
    "in_season": false,
    "id_key": "esports_lol"
  },
  {
    "league": "NHL",
    "in_season": false,
    "id_key": "icehockey_nhl"
  },
  {
    "league": "MMA",
    "in_season": true,
    "id_key": "mma_mixed_martial_arts"
  },
  {
    "league": "NRL",
    "in_season": false,
    "id_key": "rugbyleague_nrl"
  },
  {
    "league": "State of Origin",
    "in_season": false,
    "id_key": "rugbyleague_nrl_state_of_origin"
  },
  {
    "league": "World Cup",
    "in_season": false,
    "id_key": "rugbyleague_world_cup"
  },
  {
    "league": "Aviva Premiership",
    "in_season": false,
    "id_key": "rugbyunion_aviva_premiership"
  },
  {
    "league": "Premiership Rugby",
    "in_season": false,
    "id_key": "rugbyunion_premiership_rugby"
  },
  {
    "league": "Six Nations",
    "in_season": false,
    "id_key": "rugbyunion_six_nations"
  },
  {
    "league": "Super Rugby",
    "in_season": false,
    "id_key": "rugbyunion_super_rugby"
  },
  {
    "league": "Sydney 7s",
    "in_season": false,
    "id_key": "rugbyunion_sydney_7s"
  },
  {
    "league": "Primera División - Argentina",
    "in_season": false,
    "id_key": "soccer_argentina_primera_division"
  },
  {
    "league": "A-League",
    "in_season": false,
    "id_key": "soccer_australia_aleague"
  },
  {
    "league": "Belgium First Div",
    "in_season": false,
    "id_key": "soccer_belgium_first_div"
  },
  {
    "league": "Brazil Série A",
    "in_season": false,
    "id_key": "soccer_brazil_campeonato"
  },
  {
    "league": "Super League - China",
    "in_season": false,
    "id_key": "soccer_china_superleague"
  },
  {
    "league": "Denmark Superliga",
    "in_season": false,
    "id_key": "soccer_denmark_superliga"
  },
  {
    "league": "Championship",
    "in_season": false,
    "id_key": "soccer_efl_champ"
  },
  {
    "league": "League 1",
    "in_season": false,
    "id_key": "soccer_england_league1"
  },
  {
    "league": "League 2",
    "in_season": false,
    "id_key": "soccer_england_league2"
  },
  {
    "league": "EPL",
    "in_season": false,
    "id_key": "soccer_epl"
  },
  {
    "league": "FA Cup",
    "in_season": false,
    "id_key": "soccer_fa_cup"
  },
  {
    "league": "World Cup",
    "in_season": false,
    "id_key": "soccer_fifa_world_cup"
  },
  {
    "league": "Veikkausliiga - Finland",
    "in_season": false,
    "id_key": "soccer_finland_veikkausliiga"
  },
  {
    "league": "Ligue 1 - France",
    "in_season": false,
    "id_key": "soccer_france_ligue_one"
  },
  {
    "league": "Ligue 2 - France",
    "in_season": false,
    "id_key": "soccer_france_ligue_two"
  },
  {
    "league": "Bundesliga - Germany",
    "in_season": false,
    "id_key": "soccer_germany_bundesliga"
  },
  {
    "league": "Bundesliga 2 - Germany",
    "in_season": false,
    "id_key": "soccer_germany_bundesliga2"
  },
  {
    "league": "Int. Friendlies",
    "in_season": false,
    "id_key": "soccer_int_friendlies"
  },
  {
    "league": "Inter. Champs Cup",
    "in_season": false,
    "id_key": "soccer_inter_champs_cup"
  },
  {
    "league": "Serie A - Italy",
    "in_season": false,
    "id_key": "soccer_italy_serie_a"
  },
  {
    "league": "Serie B - Italy",
    "in_season": false,
    "id_key": "soccer_italy_serie_b"
  },
  {
    "league": "J League",
    "in_season": false,
    "id_key": "soccer_japan_j_league"
  },
  {
    "league": "K League 1",
    "in_season": true,
    "id_key": "soccer_korea_kleague1"
  },
  {
    "league": "League of Ireland",
    "in_season": false,
    "id_key": "soccer_league_of_ireland"
  },
  {
    "league": "Liga MX",
    "in_season": false,
    "id_key": "soccer_mexico_ligamx"
  },
  {
    "league": "Dutch Eredivisie",
    "in_season": false,
    "id_key": "soccer_netherlands_eredivisie"
  },
  {
    "league": "Eliteserien - Norway",
    "in_season": false,
    "id_key": "soccer_norway_eliteserien"
  },
  {
    "league": "Primeira Liga - Portugal",
    "in_season": false,
    "id_key": "soccer_portugal_primeira_liga"
  },
  {
    "league": "Premier League - Russia",
    "in_season": false,
    "id_key": "soccer_russia_premier_league"
  },
  {
    "league": "La Liga - Spain",
    "in_season": false,
    "id_key": "soccer_spain_la_liga"
  },
  {
    "league": "La Liga 2 - Spain",
    "in_season": false,
    "id_key": "soccer_spain_segunda_division"
  },
  {
    "league": "SPL",
    "in_season": false,
    "id_key": "soccer_spl"
  },
  {
    "league": "Allsvenskan - Sweden",
    "in_season": false,
    "id_key": "soccer_sweden_allsvenskan"
  },
  {
    "league": "Superettan - Sweden",
    "in_season": false,
    "id_key": "soccer_sweden_superettan"
  },
  {
    "league": "Swiss Superleague",
    "in_season": false,
    "id_key": "soccer_switzerland_superleague"
  },
  {
    "league": "Turkey Super League",
    "in_season": false,
    "id_key": "soccer_turkey_super_league"
  },
  {
    "league": "UEFA Champions",
    "in_season": false,
    "id_key": "soccer_uefa_champs_league"
  },
  {
    "league": "UEFA Europa",
    "in_season": false,
    "id_key": "soccer_uefa_europa_league"
  },
  {
    "league": "MLS",
    "in_season": false,
    "id_key": "soccer_usa_mls"
  }
]
Parameter Type Description
league string Professional league.
in_season bool true if in season, other false.
id_key string ID key for league.

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.
WorldCurrencyList Outputs a full list of world currency names.

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.

WorldCurrencyList

Outputs a full list of world currency names.

Request Parameters

Sample Request

curl -H "Accept: application/json" -H "Content-Type: application/json" -d '[]' https://api.maplenodes.com/v1/WorldCurrencyList

WorldCurrencyList

This call does not take parameters.

Response

Sample 200 Response

[
  {
    "currencyName": "Albanian Lek",
    "id": "ALL"
  },
  {
    "currencyName": "East Caribbean Dollar",
    "id": "XCD"
  },
  {
    "currencyName": "Euro",
    "id": "EUR"
  },
  {
    "currencyName": "Barbadian Dollar",
    "id": "BBD"
  },
  {
    "currencyName": "Bhutanese Ngultrum",
    "id": "BTN"
  },
  {
    "currencyName": "Brunei Dollar",
    "id": "BND"
  },
  {
    "currencyName": "Central African CFA Franc",
    "id": "XAF"
  },
  {
    "currencyName": "Cuban Peso",
    "id": "CUP"
  },
  {
    "currencyName": "United States Dollar",
    "id": "USD"
  },
  {
    "currencyName": "Falkland Islands Pound",
    "id": "FKP"
  },
  {
    "currencyName": "Gibraltar Pound",
    "id": "GIP"
  },
  {
    "currencyName": "Hungarian Forint",
    "id": "HUF"
  },
  {
    "currencyName": "Iranian Rial",
    "id": "IRR"
  },
  {
    "currencyName": "Jamaican Dollar",
    "id": "JMD"
  },
  {
    "currencyName": "Australian Dollar",
    "id": "AUD"
  },
  {
    "currencyName": "Lao Kip",
    "id": "LAK"
  },
  {
    "currencyName": "Libyan Dinar",
    "id": "LYD"
  },
  {
    "currencyName": "Macedonian Denar",
    "id": "MKD"
  },
  {
    "currencyName": "West African CFA Franc",
    "id": "XOF"
  },
  {
    "currencyName": "New Zealand Dollar",
    "id": "NZD"
  },
  {
    "currencyName": "Omani Rial",
    "id": "OMR"
  },
  {
    "currencyName": "Papua New Guinean Kina",
    "id": "PGK"
  },
  {
    "currencyName": "Rwandan Franc",
    "id": "RWF"
  },
  {
    "currencyName": "Samoan Tala",
    "id": "WST"
  },
  {
    "currencyName": "Serbian Dinar",
    "id": "RSD"
  },
  {
    "currencyName": "Swedish Krona",
    "id": "SEK"
  },
  {
    "currencyName": "Tanzanian Shilling",
    "id": "TZS"
  },
  {
    "currencyName": "Armenian Dram",
    "id": "AMD"
  },
  {
    "currencyName": "Bahamian Dollar",
    "id": "BSD"
  },
  {
    "currencyName": "Bosnia And Herzegovina Konvertibilna Marka",
    "id": "BAM"
  },
  {
    "currencyName": "Cape Verdean Escudo",
    "id": "CVE"
  },
  {
    "currencyName": "Chinese Yuan",
    "id": "CNY"
  },
  {
    "currencyName": "Costa Rican Colon",
    "id": "CRC"
  },
  {
    "currencyName": "Czech Koruna",
    "id": "CZK"
  },
  {
    "currencyName": "Eritrean Nakfa",
    "id": "ERN"
  },
  {
    "currencyName": "Georgian Lari",
    "id": "GEL"
  },
  {
    "currencyName": "Haitian Gourde",
    "id": "HTG"
  },
  {
    "currencyName": "Indian Rupee",
    "id": "INR"
  },
  {
    "currencyName": "Jordanian Dinar",
    "id": "JOD"
  },
  {
    "currencyName": "South Korean Won",
    "id": "KRW"
  },
  {
    "currencyName": "Lebanese Lira",
    "id": "LBP"
  },
  {
    "currencyName": "Malawian Kwacha",
    "id": "MWK"
  },
  {
    "currencyName": "Mauritanian Ouguiya",
    "id": "MRO"
  },
  {
    "currencyName": "Mozambican Metical",
    "id": "MZN"
  },
  {
    "currencyName": "Netherlands Antillean Gulden",
    "id": "ANG"
  },
  {
    "currencyName": "Peruvian Nuevo Sol",
    "id": "PEN"
  },
  {
    "currencyName": "Qatari Riyal",
    "id": "QAR"
  },
  {
    "currencyName": "Sao Tome And Principe Dobra",
    "id": "STD"
  },
  {
    "currencyName": "Sierra Leonean Leone",
    "id": "SLL"
  },
  {
    "currencyName": "Somali Shilling",
    "id": "SOS"
  },
  {
    "currencyName": "Sudanese Pound",
    "id": "SDG"
  },
  {
    "currencyName": "Syrian Pound",
    "id": "SYP"
  },
  {
    "currencyName": "Angolan Kwanza",
    "id": "AOA"
  },
  {
    "currencyName": "Aruban Florin",
    "id": "AWG"
  },
  {
    "currencyName": "Bahraini Dinar",
    "id": "BHD"
  },
  {
    "currencyName": "Belize Dollar",
    "id": "BZD"
  },
  {
    "currencyName": "Botswana Pula",
    "id": "BWP"
  },
  {
    "currencyName": "Burundi Franc",
    "id": "BIF"
  },
  {
    "currencyName": "Cayman Islands Dollar",
    "id": "KYD"
  },
  {
    "currencyName": "Colombian Peso",
    "id": "COP"
  },
  {
    "currencyName": "Danish Krone",
    "id": "DKK"
  },
  {
    "currencyName": "Guatemalan Quetzal",
    "id": "GTQ"
  },
  {
    "currencyName": "Honduran Lempira",
    "id": "HNL"
  },
  {
    "currencyName": "Indonesian Rupiah",
    "id": "IDR"
  },
  {
    "currencyName": "Israeli New Sheqel",
    "id": "ILS"
  },
  {
    "currencyName": "Kazakhstani Tenge",
    "id": "KZT"
  },
  {
    "currencyName": "Kuwaiti Dinar",
    "id": "KWD"
  },
  {
    "currencyName": "Lesotho Loti",
    "id": "LSL"
  },
  {
    "currencyName": "Malaysian Ringgit",
    "id": "MYR"
  },
  {
    "currencyName": "Mauritian Rupee",
    "id": "MUR"
  },
  {
    "currencyName": "Mongolian Tugrik",
    "id": "MNT"
  },
  {
    "currencyName": "Myanma Kyat",
    "id": "MMK"
  },
  {
    "currencyName": "Nigerian Naira",
    "id": "NGN"
  },
  {
    "currencyName": "Panamanian Balboa",
    "id": "PAB"
  },
  {
    "currencyName": "Philippine Peso",
    "id": "PHP"
  },
  {
    "currencyName": "Romanian Leu",
    "id": "RON"
  },
  {
    "currencyName": "Saudi Riyal",
    "id": "SAR"
  },
  {
    "currencyName": "Singapore Dollar",
    "id": "SGD"
  },
  {
    "currencyName": "South African Rand",
    "id": "ZAR"
  },
  {
    "currencyName": "Surinamese Dollar",
    "id": "SRD"
  },
  {
    "currencyName": "New Taiwan Dollar",
    "id": "TWD"
  },
  {
    "currencyName": "Paanga",
    "id": "TOP"
  },
  {
    "currencyName": "Venezuelan Bolivar",
    "id": "VEF"
  },
  {
    "currencyName": "Algerian Dinar",
    "id": "DZD"
  },
  {
    "currencyName": "Argentine Peso",
    "id": "ARS"
  },
  {
    "currencyName": "Azerbaijani Manat",
    "id": "AZN"
  },
  {
    "currencyName": "Belarusian Ruble",
    "id": "BYR"
  },
  {
    "currencyName": "Bolivian Boliviano",
    "id": "BOB"
  },
  {
    "currencyName": "Bulgarian Lev",
    "id": "BGN"
  },
  {
    "currencyName": "Canadian Dollar",
    "id": "CAD"
  },
  {
    "currencyName": "Chilean Peso",
    "id": "CLP"
  },
  {
    "currencyName": "Congolese Franc",
    "id": "CDF"
  },
  {
    "currencyName": "Dominican Peso",
    "id": "DOP"
  },
  {
    "currencyName": "Fijian Dollar",
    "id": "FJD"
  },
  {
    "currencyName": "Gambian Dalasi",
    "id": "GMD"
  },
  {
    "currencyName": "Guyanese Dollar",
    "id": "GYD"
  },
  {
    "currencyName": "Icelandic Króna",
    "id": "ISK"
  },
  {
    "currencyName": "Iraqi Dinar",
    "id": "IQD"
  },
  {
    "currencyName": "Japanese Yen",
    "id": "JPY"
  },
  {
    "currencyName": "North Korean Won",
    "id": "KPW"
  },
  {
    "currencyName": "Latvian Lats",
    "id": "LVL"
  },
  {
    "currencyName": "Swiss Franc",
    "id": "CHF"
  },
  {
    "currencyName": "Malagasy Ariary",
    "id": "MGA"
  },
  {
    "currencyName": "Moldovan Leu",
    "id": "MDL"
  },
  {
    "currencyName": "Moroccan Dirham",
    "id": "MAD"
  },
  {
    "currencyName": "Nepalese Rupee",
    "id": "NPR"
  },
  {
    "currencyName": "Nicaraguan Cordoba",
    "id": "NIO"
  },
  {
    "currencyName": "Pakistani Rupee",
    "id": "PKR"
  },
  {
    "currencyName": "Paraguayan Guarani",
    "id": "PYG"
  },
  {
    "currencyName": "Saint Helena Pound",
    "id": "SHP"
  },
  {
    "currencyName": "Seychellois Rupee",
    "id": "SCR"
  },
  {
    "currencyName": "Solomon Islands Dollar",
    "id": "SBD"
  },
  {
    "currencyName": "Sri Lankan Rupee",
    "id": "LKR"
  },
  {
    "currencyName": "Thai Baht",
    "id": "THB"
  },
  {
    "currencyName": "Turkish New Lira",
    "id": "TRY"
  },
  {
    "currencyName": "UAE Dirham",
    "id": "AED"
  },
  {
    "currencyName": "Vanuatu Vatu",
    "id": "VUV"
  },
  {
    "currencyName": "Yemeni Rial",
    "id": "YER"
  },
  {
    "currencyName": "Afghan Afghani",
    "id": "AFN"
  },
  {
    "currencyName": "Bangladeshi Taka",
    "id": "BDT"
  },
  {
    "currencyName": "Brazilian Real",
    "id": "BRL"
  },
  {
    "currencyName": "Cambodian Riel",
    "id": "KHR"
  },
  {
    "currencyName": "Comorian Franc",
    "id": "KMF"
  },
  {
    "currencyName": "Croatian Kuna",
    "id": "HRK"
  },
  {
    "currencyName": "Djiboutian Franc",
    "id": "DJF"
  },
  {
    "currencyName": "Egyptian Pound",
    "id": "EGP"
  },
  {
    "currencyName": "Ethiopian Birr",
    "id": "ETB"
  },
  {
    "currencyName": "CFP Franc",
    "id": "XPF"
  },
  {
    "currencyName": "Ghanaian Cedi",
    "id": "GHS"
  },
  {
    "currencyName": "Guinean Franc",
    "id": "GNF"
  },
  {
    "currencyName": "Hong Kong Dollar",
    "id": "HKD"
  },
  {
    "currencyName": "Special Drawing Rights",
    "id": "XDR"
  },
  {
    "currencyName": "Kenyan Shilling",
    "id": "KES"
  },
  {
    "currencyName": "Kyrgyzstani Som",
    "id": "KGS"
  },
  {
    "currencyName": "Liberian Dollar",
    "id": "LRD"
  },
  {
    "currencyName": "Macanese Pataca",
    "id": "MOP"
  },
  {
    "currencyName": "Maldivian Rufiyaa",
    "id": "MVR"
  },
  {
    "currencyName": "Mexican Peso",
    "id": "MXN"
  },
  {
    "currencyName": "Namibian Dollar",
    "id": "NAD"
  },
  {
    "currencyName": "Norwegian Krone",
    "id": "NOK"
  },
  {
    "currencyName": "Polish Zloty",
    "id": "PLN"
  },
  {
    "currencyName": "Russian Ruble",
    "id": "RUB"
  },
  {
    "currencyName": "Swazi Lilangeni",
    "id": "SZL"
  },
  {
    "currencyName": "Tajikistani Somoni",
    "id": "TJS"
  },
  {
    "currencyName": "Trinidad and Tobago Dollar",
    "id": "TTD"
  },
  {
    "currencyName": "Ugandan Shilling",
    "id": "UGX"
  },
  {
    "currencyName": "Uruguayan Peso",
    "id": "UYU"
  },
  {
    "currencyName": "Vietnamese Dong",
    "id": "VND"
  },
  {
    "currencyName": "Tunisian Dinar",
    "id": "TND"
  },
  {
    "currencyName": "Ukrainian Hryvnia",
    "id": "UAH"
  },
  {
    "currencyName": "Uzbekistani Som",
    "id": "UZS"
  },
  {
    "currencyName": "Turkmenistan Manat",
    "id": "TMT"
  },
  {
    "currencyName": "British Pound",
    "id": "GBP"
  },
  {
    "currencyName": "Zambian Kwacha",
    "id": "ZMW"
  },
  {
    "currencyName": "Bitcoin",
    "id": "BTC"
  },
  {
    "currencyName": "New Belarusian Ruble",
    "id": "BYN"
  },
  {
    "currencyName": "Bermudan Dollar",
    "id": "BMD"
  },
  {
    "currencyName": "Guernsey Pound",
    "id": "GGP"
  },
  {
    "currencyName": "Chilean Unit Of Account",
    "id": "CLF"
  },
  {
    "currencyName": "Cuban Convertible Peso",
    "id": "CUC"
  },
  {
    "currencyName": "Manx pound",
    "id": "IMP"
  },
  {
    "currencyName": "Jersey Pound",
    "id": "JEP"
  },
  {
    "currencyName": "Salvadoran Colón",
    "id": "SVC"
  },
  {
    "currencyName": "Old Zambian Kwacha",
    "id": "ZMK"
  },
  {
    "currencyName": "Silver (troy ounce)",
    "id": "XAG"
  },
  {
    "currencyName": "Zimbabwean Dollar",
    "id": "ZWL"
  }
]
Parameter Type Description
currencyName String Currency name.
id String Currency ID.

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

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