Markopolo Explorer's logo.

API v1.0

getAddress

GET parameters: "address".Returns main stored informations about the provided address: total received and spent coins, both confirmed and unconfirmed.

getAddressTransactions

GET parameters: "address", "page" (optional, default is 1).Returns up to 10 stored transactions regarding the provided address. Offset can be moved by setting the "page" parameter.

getBlock

GET parameters: "hash" or "index".Directly returns the client's answer by calling the "getblock" function, if providing an index it calls "getblockhash" before. It is recommended to use either getBlockByHash or getBlockByIndex for slightly better performance.

getBlockByHash

GET parameters: "hash".Just like calling getBlock with a "hash" parameter, but avoids futile checks for an eventual "index" parameter, being slightly faster.

getBlockByIndex

GET parameters: "index".Just like calling getBlock with a "index" parameter, but avoids futile checks for an eventual "hash" parameter, being slightly faster.

getBlockchainInfo

No parameters.Directly returns the client's answer by calling the "getblockchaininfo" function.

getBlockHash

GET parameters: "index".Directly returns the client's answer by calling the "getblockhash" function.

getLastBlocks

GET parameters: "page" (optional, default is 1).Returns up to 10 blocks directly from the client. Offset can be moved by setting the "page" parameter.

getLastTransactions

GET parameters: "page" (optional, default is 1).Returns up to 10 stored transactions. Offset can be moved by setting the "page" parameter.

getMiningInfo

No parameters.Directly returns the client's answer by calling the "getblockchaininfo" function.

getRawTransaction

GET parameters: "id".Directly returns the client's answer by calling the "getrawtransaction" function.

getSupply

No parameters.Returns the stored total coin supply.

getTransaction

GET parameters: "id" (either transaction's literal id or numeric index).Returns main stored informations about the provided transaction.