Get all stored blobs
GET/v1/chains/:chainID/core/blobs
Get all stored blobs
Request
Path Parameters
chainID stringrequired
ChainID (Bech32)
Query Parameters
block string
Block index or trie root
Responses
- 200
- 401
All stored blobs
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Blobs Blob[]
hash stringrequired
size int32required
Possible values: >= 1
{
"Blobs": [
{
"size": 1,
"hash": "hash"
},
{
"size": 1,
"hash": "hash"
}
]
}
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
missingPermission stringrequired
{
"error": "string",
"missingPermission": "string"
}
Loading...