get_blobs_by_blober
Last updated
Last updated
The start
and end
fields can be omitted for one-sided or open-ended ranges.
Returns an empty list if no blobs were found.
Returns an error if there was a database or RPC failure.
The blober account typically represents a user account or a node account, but the exact mapping differs depending on the network.
To query blobs by a blober’s ID or namespace, use get_blobs_by_namespace
.
Or to query blobs associated with a unique payer across multiple blobers, see get_blobs_by_payer
.
POST /get_blobs_by_blober HTTP/1.1
Host: devnet.indexer.data-anchor.termina.technology
Content-Type: application/json
Accept: */*
Content-Length: 185
{
"id": "43",
"jsonrpc": "2.0",
"method": "get_blobs_by_blober",
"params": {
"blober": "4Nd1m1c9f9LxFHVfv1m1ChMpV4hV6j3uYVFzh5eRvYV7",
"start": "2025-06-01T00:00:00Z",
"end": "2025-06-10T00:00:00Z"
}
}
{
"jsonrpc": "2.0",
"id": "43",
"result": [
[
1,
2,
3,
4
],
[
10,
20,
30
]
]
}