A REST API for the latest Mina Blockchain Data. For all archived data, use the GraphQL API.

Server
https://api.minaexplorer.com
Server Variables

Broadcast

Broadcast signed transactions to the network

Broadcast Transaction

Broadcasts a signed transaction to the Mina blockchain

Auth
Request Body

Signed transaction

objectobject
publicKeystring

minLength: 1

signatureobject
fieldstring

minLength: 1

scalarstring

minLength: 1

payloadobject
tostring

minLength: 1

fromstring

minLength: 1

feestring

minLength: 1

amountstring

minLength: 1

noncestring

minLength: 1

memostring

minLength: 1

validUntilstring

minLength: 1

POST /broadcast/transaction
Copy
Responses
201

Sucessfully broadcast transaction

400

Bad Request

Response
Copy

Broadcast Delegation

Broadcasts a signed delegation transaction to the Mina blockchain

Auth
Request Body

Signed delegation transaction

objectobject
publicKeystring

minLength: 1

signatureobject
fieldstring

minLength: 1

scalarstring

minLength: 1

payloadobject
tostring

minLength: 1

fromstring

minLength: 1

feestring

minLength: 1

noncestring

minLength: 1

memostring

minLength: 1

validUntilstring

minLength: 1

POST /broadcast/delegation
Copy
Responses
201

Created

400

Bad Request

Response
Copy

Blocks

Get block data

Get latest blocks

Get the latest blocks on the canonical chain. The default options return the latest block, but will return up to a maximum of 10 blocks. For full block data use the GraphQL API.

Auth
Query String
limitnumber

Limit the number of blocks returned

maximum: 10

minimum: 1

Default: 1

GET /blocks
Copy
Responses
200

OK

Response
Copy

Get block

Return a block by protocol state hash

Auth
Path Params
state_hashstring

The protocol state hash of the block to be returned

GET /blocks/{state_hash}
Copy
Responses
200

OK

404

Not Found

Response
Copy

Accounts

Get account data

Account Details

Get the details of a Mina account

Auth
Path Params
public_keystring

Public key of the account

GET /accounts/{public_key}
Copy
Responses
200

OK

404

Not Found

Blockchain

Return summary information about the blockchain

Blockchain Summary

Returns summary information about the current chain

Auth
GET /summary
Copy
Responses
200

OK

objectobject
blockchainLengthnumber
chainIdstring

minLength: 1

circulatingSupplystring

minLength: 1

dateTimestring

minLength: 1

epochnumber
globalSlotnumber
lockedSupplystring

minLength: 1

minWindowDensitynumber
nextEpochLedgerHashstring

minLength: 1

previousStateHashstring

minLength: 1

slotnumber
snarkedLedgerHashstring

minLength: 1

stagedLedgerHashstring

minLength: 1

stakingEpochLedgerHashstring

minLength: 1

stateHashstring

minLength: 1

totalCurrencystring

minLength: 1

Response
Copy