IPFS uploads lister

[apis/nftport/v0/IPFS uploads lister]


Returns a list of all data uploaded to IPFS by you. This includes files, metadata and directories uploaded to IPFS. Note: Only lists IPFS uploads created after 2022-03-21T12:10:00 UTC. Response is paged. List all your IPFS uploads: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-ipfs-uploads


Keywords: web3, blockchain, crypto, nft, ipfs, upload, file, metadata, storage, list

Input ports

  • query:

    {
      "type": ("file" or "metadata" or "metadata_directory" or "all")[],
      optional "start_date": string,
      optional "end_date": string,
      optional "page_size": number,
      optional "page_number": number
    }

    Reference: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-ipfs-uploads#Query-Parameters

  • params: {"api_key": string}

    Reference: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-ipfs-uploads#Request

Output ports

  • data:

    {
      "response": "OK",
      "storage": {
        "type": ("file" or "metadata"),
        optional "file_name": string,
        "ipfs_uri": string,
        "ipfs_url": string,
        "uploaded_date": string,
        optional "content_type": string,
        optional "file_size": number,
        optional "file_size_mb": number
      }[]
    }

    Sends the list of all the data uploaded to IPFS by you. Reference: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-ipfs-uploads#response-body

  • response:

    {"status": number, "headers": {string: string}, "body": string}

    Sends the original response.

  • error: {"error": string, "details": any}

Last updated