Skip to main content
GET
/
v2
/
transactions
/
{transaction_hash_param}
/
blobs
List blobs for a transaction
curl --request GET \
  --url http://localhost/api/v2/transactions/{transaction_hash_param}/blobs
{
  "items": [
    {
      "blob_data": "<string>",
      "hash": "<string>",
      "kzg_commitment": "<string>",
      "kzg_proof": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.blockscout.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

transaction_hash_param
string
required

Transaction hash in the path

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

Query Parameters

apikey
string

API key for rate limiting or for sensitive endpoints

key
string

Secret key for getting access to restricted resources

Response

Blobs for transaction.

items
BlobResponse · object[]