/
/Logos Storage API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 22m ago · Updated 1mo ago
Data9
  • getLists manifest CIDs stored locally in node.
  • postUpload a file in a streaming manner. Once finished, the file is stored in the node and can be retrieved by any node in the network using the returned CID.
  • getDownload a file from the local node in a streaming manner. If the file is not available locally, a 404 is returned.
  • deleteDeletes either a single block or an entire dataset from the local node.
  • postDownload a file from the network to the local node if it's not available locally. Note: Download is performed async. Call can return before download is completed.
  • getDownload a file from the network in a streaming manner. If the file is not available locally, it will be retrieved from other nodes in the network if able.
  • getDownload only the dataset manifest from the network to the local node if it's not available locally.
  • getCheck if a block identified by CID exists in the local node.
  • getGets a summary of the storage space allocation of the node.
Debug2
Node3
    Data

    Lists manifest CIDs stored locally in node.

    get/data

    Response

    Retrieved list of content CIDs

    Example response

    {
      "content": [
        {
          "cid": "QmYyQSo1c1Ym7orWxLYvCrM2EmxFTANf8wXmmE7DWjhx5N",
          "manifest": {
            "treeCid": "QmYyQSo1c1Ym7orWxLYvCrM2EmxFTANf8wXmmE7DWjhx5N",
            "filename": "storage.png",
            "mimetype": "image/png"
          }
        }
      ]
    }

    Changes