Skip to main content
GET
/
{chain_id}
/
api
/
v2
/
transactions
/
{transaction_hash_param}
/
blobs
List blobs for a transaction
curl --request GET \
  --url https://api.blockscout.com/{chain_id}/api/v2/transactions/{transaction_hash_param}/blobs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "blob_data": "<string>",
      "hash": "<string>",
      "kzg_commitment": "<string>",
      "kzg_proof": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token in the Authorization header.

Path Parameters

transaction_hash_param
string
required

Transaction hash in the path

Pattern: ^0x([A-Fa-f0-9]{64})$
chain_id
string
required

The ID of the blockchain

Response

Blobs for transaction.

items
BlobResponse · object[]