/api/mined/:address/:period/sum /api/mined/:address/:period/blocks /api/block/:id /api/blocks/:id/:count :address is a wallet address :period and :count can be one of the following: a number of blocks b m h d The maximum number of blocks that can be queried at once is limited to 10000. The response document may be very large if transaction information is included. :id is "tip", a block number or a block hash The block and blocks functions have an optional query parameter ?tx=yes (return parsed transaction information), ?tx=raw (return transaction information including raw data), ?tx=coinbase (return only the coinbase transaction) The blocks and mined blocks functions have an optional query parameyer ?pool=yes to request that the API identifier of the pool that mined the block is included. It is recommended to request only as much transaction information as needed (for example to determine the winning pool you only need the coinbase transaction), to prevent excessive amounts of data to be generated. /api/tx (PUT/POST) Submit a raw transaction, optionally encoded as hexadecimal or base64 string (detected automatically) for inclusion in the blockchain. If a PUT requests is used, the transaction data is sent directly in the request body. If a POST request is used, the transaction data is read from a field named tx in a JSON, application/x-www-form-urlencoded or multipart/form-data body. /api/tx/:id Retrieves a transaction by transaction ID. Supports the query parameters ?hex=no&vin=no&vout=no to remove certain components from the response to reduce the payload size. /api/block/:id/raw Retrieve raw block data. Supports the optional ?encode=hex or ?encode=base64 query parameter. /api/tx/:id/raw Retrieve raw transaction data. Supports the optional ?encode=hex or ?encode=base64 query parameter.