get_blobs_by_blober
The
start
andend
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
.
Body
all ofOptional
Responses
200
RPC success with blob data
application/json
400
Invalid request payload
application/json
500
Internal indexer error
application/json
post
POST / HTTP/1.1
Host: devnet.indexer.data-anchor.termina.technology
Content-Type: application/json
Accept: */*
Content-Length: 199
{
"id": "43",
"jsonrpc": "2.0",
"method": "get_blobs_by_blober",
"params": {
"blober": "4Nd1m1c9f9LxFHVfv1m1ChMpV4hV6j3uYVFzh5eRvYV7",
"timerange": {
"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
]
]
}
Last updated