MESEA
  • Welcome to MESEA
  • About MESEA
  • Initial Partnership Offering
  • Initial Dex Offering
  • API Release Note
    • Ver 1.1.1
    • Ver 1.0.0
  • Getting Started
  • Account
    • Premium Account
    • Promo Code
  • MESEA Defi Platform
    • Swap
    • Saving
    • Staking Cards
    • NFTs Lottery
      • Lottery Reward
    • Store
    • Decentralized Affiliate
  • MESEA Marketplace
    • Multichain Marketplace
      • Swap P2P NFT
      • NFT Collection
        • Collection List
        • Create Collection
    • NFT Launchpads
      • Decentralized Affiliate
    • Inventory
    • NFT
      • NFT List Screen
      • NFT Transfer Screen
    • Marketplace Version 3
  • API List
    • MESEA API
      • Ver 1.1
        • Authentic
        • Resources
        • NFT Transfer
        • NFT detail
  • TUTORIAL
    • Connect Wallet
    • Check NFT
    • Transfer NFT
  • Support chain
    • Binance Smart Chain
    • Polygon
    • Fantom
    • Arbitrum
    • Optimism
  • Wallet
    • MetaMask
    • Unawa
  • Tokenomic
    • Tokenmetrics
      • MES Token
  • Link
    • MESEA
    • Twitter
    • Telegram
Powered by GitBook
On this page
  • getnfts
  • Basic Information
  • Request parameter
  • Sample requests
  • Example of successful response
  • Example of response in case of failure(status code 400)
  1. API List
  2. MESEA API
  3. Ver 1.1

NFT detail

getnfts

Get NFT details for the specified nft_whales_id.

Basic Information

Property
Detail

URL

/api/nfts/<contarct_address>/<token_id>?chainID=

Method

POST

Request parameter

Parameter
Type
Required
Detail

nft_whales_ids

array[string]

yes

nft_whales_id of target NFT

Sample requests

{
    "nft_whales_ids": ["645ca7bfed70ff001c0f5027"]
}

Example of successful response

{
  "requests": {
    "nft_whales_ids": [
      "645ca7bfed70ff001c0f5027"
    ]
  },
  "nfts": [
    {
      "nft_whales_id": "645ca7bfed70ff001c0f5027",
      "tokenID": "1",
      "chainID": "56",
      "contract_address": "0x0000000000000000000000000000000000000000",
      "owner":"0x0000000000000000000000000000000000000",
      "receiver_wallet_address": "0x1111111111111111111111111111111111111111",
      "status": "deployed",
      "request_metadata": {
        "title": "NFT Name",
        "description": "Description of NFT",
        "file_fields": [
          {
            "key": "image",
            "url": "https://api.mesea.io/erc721s/assets/56/1/image"
          }
        ]
      },
  ]
}

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

{
  "error": {
    "title": "Request Validation Error",
    "message": "Invalid request",
  }
}
PreviousNFT TransferNextConnect Wallet

Last updated 1 year ago