GET
/
api
/
v1
/
developer
/
solana
/
raw
/
blocks
/
{block_slot}
curl --request GET \
  --url https://api.allium.so/api/v1/developer/solana/raw/blocks/{block_slot} \
  --header 'X-API-KEY: <api-key>'
{
  "slot": 0,
  "height": 0,
  "timestamp": "2023-11-07T05:31:56Z",
  "hash": "<string>",
  "parent_slot": 0,
  "previous_block_hash": "<string>",
  "transaction_count": 0,
  "nonvoting_transaction_count": 0,
  "reward_count": 0
}

Blocks are the building blocks of blockchains and rollups. A block contains transactions which contains instructions which will alter the state of the solana blockchain incrementally. Transactions within a block can only be executed one after the other, not in parallel. Instructions within a transaction can only be executed one after the other, not in parallel.

Learn more in the official Solana documentation here.

Authorizations

X-API-KEY
string
header
required

Path Parameters

block_slot
integer
required

Response

200
application/json

Successful Response

Represents a row in the solana.blocks table.