NFT Garden Docs
HomepageGitHubLanguageSign up for free
  • Welcome to NFT Garden Docs
  • Getting started
  • Web release note
  • API release note
    • Ver 1.2
    • Ver 1.1
    • Ver 1.0
  • Supported Blockchains
  • Pricing
  • EUs consumption
  • Web platform
    • Dashboard
    • Contract
      • Contract list screen
      • Create contract screen
    • NFT
      • NFT list screen
      • NFT minting screen
      • NFT transfer screen
    • API key
      • API keys
      • Generate API key
    • Webhook
      • Webhook settings
    • Account
      • Account
  • API Minting
    • NFT API
      • Ver 1.2.2
        • Auth
        • Resources
        • NFT minting
        • NFT transfer
        • NFT granted(mint + transfer)
        • Get the NFT list
        • Get NFT details
        • NFT Garden NFT determination
        • Create contract
        • Get Contract details
        • Wallet Address Generation
        • API rate limit
  • Tutorial
    • Connect wallet
    • Create contract
    • Mint NFT
    • Check NFT
    • Transfer NFT
  • Links
    • NFT Garden
    • GitHub
    • Blog
    • Contact
Powered by GitBook
On this page
  • getisgdnnft
  • Basic Information
  • Request parameter
  • Sample requests
  • Example of successful response
  • Example of response in case of failure(status code 422)
  1. API Minting
  2. NFT API
  3. Ver 1.2.2

NFT Garden NFT determination

getisgdnnft

Determines if the NFT with the specified nft_gdn_id was generated by the NFT Garden.

Basic Information

Property
Detail

URL

/api/v1/getisgdnnft

Method

POST

Request parameter

Parameter
Type
Required
Detail

receiver_wallet_address

str

yes

NFT Owner

blockchain

str

yes

Blockchain to mint

nft_gdn_ids

str

yes

ID of the target NFT

Sample requests

{
    "nft_gdn_ids": ["cf7faf94-a5ec-462c-ad06-1bd772fefe21"],
    "blockchain": "polygon",
    "receiver_wallet_address": "0x1111111111111111111111111111111111111111"
}

Example of successful response

{
    "requests": {
        "receiver_wallet_address": "0x1111111111111111111111111111111111111111",
        "blockchain": "polygon",
        "nft_gdn_id": "cf7faf94-a5ec-462c-ad06-1bd772fefe21"
    },
    "response": {
        "isgdnnft": true,
        "nft": {
            "nft_gdn_id": "cf7faf94-a5ec-462c-ad06-1bd772fefe21",
            "token_id": "0",
            "contract_address": "0x0000000000000000000000000000000000000000",
            "receiver_wallet_address": "0x1111111111111111111111111111111111111111",
            "status": "deployed"
        }
    }
}

Example of response in case of failure(status code 422)

{
  "error": {
    "title": "Request Validation Error",
    "message": "Invalid request body"
  }
}
PreviousGet NFT detailsNextCreate contract

Last updated 1 year ago