Termina
  • Overview
    • Introduction
    • Quickstart
  • Solana Primer
    • Solana Virtual Machine (SVM)
    • Existing Scaling Solutions
    • Why Termina
  • Network Extension Stack
    • Overview
    • FAQs
    • Modules
      • SVM Engine
        • Engine Internals
        • Launching an Instance
      • zkSVM Prover
        • Prover Mechanics
        • Leveraging the zkSVM
      • Data Anchor
        • Data Flow
        • Using the Data Anchor
        • Indexing Data
          • Getting Blobs
            • get_blobs_by_network
            • get_blobs_by_namespace
            • get_blobs_by_blober
            • get_blobs_by_payer
            • get_blobs
          • Getting Payers
            • get_payers_by_network
          • Getting Proofs
            • get_proof_for_blob
            • get_proof
    • Rollups
  • Socials
    • Twitter
    • Discord
    • Website
Powered by GitBook
On this page
  1. Network Extension Stack
  2. Modules
  3. Data Anchor
  4. Indexing Data
  5. Getting Blobs

get_blobs_by_blober

Previousget_blobs_by_namespaceNextget_blobs_by_payer

Last updated 8 days ago

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.

  • 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 /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
    ]
  ]
}