API Reference
Explorer

Explorer

GET /v1/explorer/transactions

Query parameters

ParamTypeNotes
networkstringRequired
typeregister_blob | all
addressstringFilter by sender
limitnumberDefault 50
cursorstringCursor-based pagination

Response

{ "txs": [], "nextCursor": null }

GET /v1/explorer/tx/:hash

Query parameters

ParamTypeNotes
networkstringRequired

Response

{
  "hash": "0x...",
  "type": "register_blob",
  "sender": "0x...",
  "success": true,
  "timestamp": "2026-07-30T00:00:00Z",
  "blobIds": [],
  "gasUsed": 0
}

GET /v1/explorer/blobs

Query parameters

ParamTypeNotes
networkstringRequired
addressstringFilter by owner
statusactive | deleted | all
limitnumberDefault 50
cursorstring

Response

{ "blobs": [], "nextCursor": null }

GET /v1/explorer/blobs/:blobId

Query parameters

ParamTypeNotes
networkstringRequired

Response

{
  "blobId": "...",
  "owner": "0x...",
  "size": 0,
  "status": "active",
  "registeredAt": "2026-07-30T00:00:00Z",
  "expiresAt": "2026-08-30T00:00:00Z",
  "placementGroups": [],
  "chunksVerified": 0
}