How to do Requesting and Sharing

NFT.Kred makes NFTs social, with simple giving and receiving and allows people to show their interest and Request NFTs from others.

1. Give an NFT to someone

/nft/send API is used to give an NFT to someone. This API uses lots of parameters to give an NFT to someone but out of which NFT and wallet is required field.

  • nft - The numeric ID of the NFT.
  • uuid - The UUID of the NFT.
  • symbol - The symbol of the NFT batch.
  • sequence - The sequence of the NFT within the batch.
  • request - The number of the request being fulfilled.
  • wallet - The address or ID of the wallet.
  • text - An optional text message
curl --request GET \
     --url https://api.nft.kred/nft/grab \
     --header 'Accept: application/json' \
     --header 'Authorization: Basic am9obndvb2R5OTg1MkBnbWFpbC5jb206QWRtaW5AMTI=='

2. Give an NFT to someone using by generating a giveaway link

/nft/giveaway API is used to give an NFT to someone by generating a giveaway link. This API uses lots of parameters to generate a giveaway link.

  • batch - The ID of the batch.
  • nfts - The number of NFTs to give away.
  • text - An optional text message.
  • hours - The number of hours the giveaway will run
curl --request POST \
     --url 'https://api.nft.kred/nft/giveaway?token=YourtokenValue&batch=99999&nfts=10&hours=5' \
     --header 'Accept: application/json' \
     --header 'Authorization: Basic am9obndvb2R5OTg1MkBnbWFpbC5jb206QWRtaW5AMTI=='

3. Receive an NFT from someone

NFT.Kred supports multiple methods of giving NFTs, Depending on the method which was used to give you the NFT(s). Right now we are knowing how to receive an NFT using the giveaway link and /nft/collect API is used to receive an NFT from someone. This API uses lots of parameters to receive an NFT.

  • code - The collection code.
  • wallet - The destination wallet.
  • text - Optional text message.
curl --request POST \
     --url 'https://api.nft.kred/nft/collect?token=YourTokenValue&code=21qs43b21jnwd7&wallet=99999' \
     --header 'Accept: application/json' \
     --header 'Authorization: Basic am9obndvb2R5OTg1MkBnbWFpbC5jb206QWRtaW5AMTI=='

4. Request an NFT

NFT.Kred allows people to show their interest and Request NFTs from others. Request API lets the owner of that token know that you are interested in owning it. This API uses lots of parameters to request an NFT.

  • nft - The ID of the NFT.
  • uuid - The UUID of the NFT.
  • symbol - The symbol of the NFT batch.
  • sequence - The sequence of the NFT within the batch.
  • wallet - Target wallet.
  • text - Optional text message
curl --request POST \
     --url 'https://api.nft.kred/nft/request?token=YourTokenValue&nft=99999&wallet=99999' \
     --header 'Accept: application/json' \
     --header 'Authorization: Basic am9obndvb2R5OTg1MkBnbWFpbC5jb206QWRtaW5AMTI=='

Request and share NFT using an application

Did you try for requesting and sharing NFT using the application? Check out this guide for requesting and sharing NFT using our no-code application.