Fetch Listing Details

This API fetches all the details of an NFT listed on marketplace or to be airdropped to a user

Fetch listing details

get

Fetch listing details

Authorizations
Path parameters
listing_uuidstringRequired

listing_uuid of the listing whose details need to be fetched

Responses
200
Listing details fetched successfully
application/json
get
GET /api/v1/orders/claim-nft/{listing_uuid} HTTP/1.1
Host: www.developer.metasky.me
api_key: YOUR_API_KEY
Accept: */*
{
  "message": "Listing details fetched successfully",
  "status": "success",
  "request_id": "7e0c3676-82c9-43dc-8678-61bc4aa7c72c",
  "data": {
    "listing_uuid": "tanuki-drop-5e04-46b1-ab8d-ced3b1be8241",
    "listing_type": "DROP",
    "listing_metadata": {
      "name": "Tanukiverse Egg",
      "image": "https://skywallet-public-resources.s3.ap-southeast-1.amazonaws.com/tanukiverse-drop/fanuki/egg_1.gif",
      "description": "This egg will hatch soon to reveal your Tacky Face!",
      "animation": "https://skywallet-public-resources.s3.ap-southeast-1.amazonaws.com/tanukiverse-drop/fanuki/egg_1.gif",
      "media_type": "video"
    },
    "onchain_contract_address": "0x15b94F1a3BD74d1Eb79879eC27C6BfE6E5E0b158",
    "payment_required": true,
    "preview_required": true,
    "payment_details": {
      "base_price": {
        "symbol": "ETH",
        "value": 0.0055,
        "fiat_equivalent": [
          {
            "symbol": "USD",
            "value": 10
          },
          {
            "symbol": "INR",
            "value": 800
          },
          {
            "symbol": "JPY",
            "value": 1500
          }
        ]
      }
    },
    "total_quantity": 10,
    "available_quantity": 10,
    "campaign_id": "SMMUMBAITICKETS",
    "kyc_required": false,
    "maxPurchaseQuantityAllowed": 10,
    "maxPurchaseQuantityAllowedPerTxn": 10,
    "listing_start_time": "2022-06-09T22:50:45.969Z",
    "listing_end_time": "2022-06-19T22:50:45.969Z",
    "contract_network": {
      "type": "EVM",
      "name": "ETHEREUM",
      "chain_id": "1"
    }
  }
}

Last updated

Was this helpful?