get_blobs_by_blober

Retrieves a list of data blobs for a given blober pubkey within a time range.

post
  • 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.

Body
all ofOptional
Responses
200

RPC success with blob data

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