Logo

NFT

The NFT APIs allow you to create and manage your NFTs in the blockchain.

Questions?

Don't let uncertainty hold you back. Ask us anything and get the answers you need to take your business to the next level.

LET'S TALK

MEDIA

Example

POST

Create Collection

The NFT Collection is created in the blockchain.

Parameters

    POST

    /media/:blockchain/create

    Response

    
    {
    "id": " ",
    "name": " ",
    "symbol": " ",
    "address": " ",
    "type": " ",
    "blockchain": " ",
    "created_at": ,
    "updated_at":
    }
    

    POST

    Mint NFT

    The NFT image is created in the blockchain and the NFT image is stored in the CryptoMate servers.

    Parameters

      POST

      /media/:blockchain/:contractId/mint

      Response

      {
          "to_address": " ",
          "name": ,
          "symbol": ,
          "contract_address": ,
          "blockchain": " "
      }
      

      GET

      List collection by blockchain

      Gets all the NFT Collections created in certain blockchain.

      Parameters

        GET

        /media/:blockchain/get

        Response

        [
            {
                "id": " ",
                "name": " ",
                "symbol": " ",
                "address": " ",
                "type": " ",
                "blockchain": " ",
                "created_at": " ",
                "updated_at": " "
            }
        ]