/nft

Description of available nft endpoint calls

Get seller NFTs

GET https://platform.artcart.cloud/api/transactional/nft

Gets all NFTs for authenticated seller.

Headers

NameTypeDescription

Authorization

Bearer token

Authorization token

[{
    _id: "6210241894dece379ab1b3a3",
    nft_address: "0xB0EA149212Eb707a1E5FC1D2d3fD318a8d94cf05",
    author_wallet: "0xd0a9ffBDDC03326c8AeC4287d8e6a3d92d1F7C4d",
    buyer_email: "email@gmail.com",
    image_ipfshash: "QmdQEtcVE5p9aFxt7YSHAFZYDFvjmVQbHFTeumBx7oC8w5",
    meta_ipfshash: "QmVwWpydspiqghzxi5NFWU9bKgFosL6fP6FR5ifbbdTwpA",
    status: "SELLING",
    full_address: "0xB0EA149212Eb707a1E5FC1D2d3fD318a8d94cf05:605720701758851991059862763...",
    nft_id: "6057207017588519910598627635669384979930777496126688723569505427708675...",
    rarible_url: "https://ropsten.rarible.com/token/0xB0EA149212Eb707a1E5FC1D2d3fD318a8d...",
    network: "RARIBLE",
    price: "100"
}]

Issue an NFT to a buyer

POST https://platform.artcart.cloud/api/transactional

Issue an un-minted NFT to a buyer using his email, so that they can claim it.

Headers

NameTypeDescription

Authorization*

Bearer token

Authorization token

Request Body

NameTypeDescription

cid*

Sting

Metadata IPFS hash identifying an NFT template

email*

String

Email of a buyer/user

{
    // Response
}

Last updated