Get all fields of a blob
GET//v1/chains/:chainID/core/blobs/:blobHash
Get all fields of a blob
Request
Path Parameters
chainID stringrequired
ChainID (Bech32)
blobHash stringrequired
BlobHash (Hex)
Query Parameters
block string
Block index or trie root
Responses
- 200
- 401
All blob fields and their values
- application/json
- Schema
- Example (from schema)
Schema
fields Fieldsrequired
{
"fields": {
"key": 0
}
}
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
missingPermission stringrequired
{
"error": "string",
"missingPermission": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/v1/chains/:chainID/core/blobs/:blobHash' \
-H 'Accept: application/json'
ResponseClear