v0/headerGET
v0/data_root_inclusion_proofGET
v0/blobPOST
v0/blobGET
v0/blob/get_allPOST
v0/blob/statusGET
v0/blob/get_commitmentPOST
v0/gas_priceGET

GET v0/blob
Get a Data Blob from Celestia
Retrieves a data blob from the Celestia blockchain by its submission height, namespace, and commitment.
Query Parameters
networkstringOPTIONAL
The Celestia network to which the data blob should be posted. Can be either 'mainnet' or 'mocha-4'. Defaults to 'mainnet' if no value is specified. Read more about networks on the Celestia Docs here.
namespacestringREQUIRED
The namespace associated with the blob. This should be in `base64` format. Be sure to encode the value in your request.
blobCommitmentstringREQUIRED
The commitment of the blob you are trying to retrieve. This is a `base64` encoded string that represents the hash of the blob data. Be sure to encode the value in your request.
heightnumberREQUIRED
The block height at which the blob was submitted in the Celestia blockchain.
Response
namespacestring
The namespace of the blob.
datastring
The data of the blob, encoded in base64.
shareVersionnumber
The share version of the blob.
commitmentstring
The commitment of the blob, which is a hash of the blob data.
Example Response
Request

curl \
  -H 'Authorization: Bearer <YOUR API KEY>' \
  'https://t.tech/v0/blob?namespace=%22REPLACE%20ME%22&blobCommitment=%22REPLACE%20ME%22&height=0'
twinkle logo text
Enabling builders