/
/Wasp API
ChangesDocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 26m ago · Updated 2mo ago
auth2
chains13
corecontracts28
  • getGet a list of all accounts
  • getGet all assets belonging to an account
  • getGet all NFT ids belonging to an account
  • getGet the current nonce of an account
  • getGet the foundry output
  • getGet the NFT data by an ID
  • getGet a list of all registries
  • getGet all stored assets
  • getGet all stored blobs
  • getGet all fields of a blob
  • getGet the value of the supplied field (key)
  • getGet the block info of the latest block
  • getGet all receipts of the latest block
  • getGet the request ids for the latest block
  • getGet the block info of a certain block index
  • getGet all receipts of a certain block
  • getGet the request ids for a certain block index
  • getGet the control addresses
  • getGet events of the latest block
  • getGet events of a block
  • getGet events of a contract
  • getGet events of a request
  • getGet the receipt of a certain request id
  • getGet the request processing status
  • getGet the error message format of a specific error id
  • getGet the allowed state controller addresses
  • getGet the chain info
  • getGet the chain owner
metrics4
node12
requests4
users6
    corecontracts

    Get all stored blobs

    get/chains/{chainID}/core/blobs

    Path parameters

    chainIDstring string required

    ChainID (Bech32)

    Response

    All stored blobs

    Example response

    {
      "Blobs": [
        {
          "size": 1,
          "hash": "hash"
        },
        {
          "size": 1,
          "hash": "hash"
        }
      ]
    }

    Changes