API Documentation

MPool provides an easy to use API.
Requests are made using standard HTTP and responses are returned in JSON format.

The endpoint used for API calls is https://api.mpool.live with methods appended.

Endpoints

/coins

get

Description
Returns the list of supported coins and their info
Parameters
Name Located in Description Required Schema
ticker query Filter coin info to this ticker No string
Responses
Code Description Schema
200 Returns the list of supported coins and their info
Coin ]

/blocks

get

Description
Returns the list of mined blocks of specified coin
Parameters
Name Located in Description Required Schema
ticker query The requested coin to return blocks of Yes string
offset query Start from block row No string
limit query Limit the result to this amount of blocks No string
Responses
Code Description Schema
200 Returns the list of mined blocks of specified coin
Block ]

/wallet

get

Description
Returns specified wallet's info
Parameters
Name Located in Description Required Schema
ticker query The requested wallet's coin Yes string
wallet query The requested wallet to return the info about Yes string
Responses
Code Description Schema
200 Returns specified wallet's info
Wallet ]

Examples

https://api.mpool.live/coins
https://api.mpool.live/blocks?ticker=<ticker>&offset=<offset>&limit=<limit>
https://api.mpool.live/wallet?ticker=<ticker>&address=<address>