Metasky
  • Welcome!
  • Introduction
    • Our Solutions
    • Web 3.0 Resources
  • Metasky Studio
    • Introduction
    • Easy Steps To Create Your Own Club
    • Studio Modules
      • Messaging
      • Members
      • Utilities
        • Discord Utility
      • Collections
      • Bounties
        • Twitter
        • Custom
      • Marketplace
      • Leaderboard
      • Settings
      • Accounts
  • Skywallet (End User UI)
    • Home
    • Wallet
    • My Clubs
    • Updates
  • Metasky API Collection
    • Metasky API - Swagger Link
    • Authentication
    • Blockchains and Networks
    • ENUMS
    • API List
      • User
        • Register New User
      • Wallet
        • Fetch Wallet Balance Summary
        • Fetch All Wallet NFTs
        • Fetch All Coin Balances
        • Fetch NFT Details
        • Fetch System Health Status
      • Accounts
        • Create Specific Account
        • Fetch All Accounts
      • Orders
        • Fetch Listing Details
        • Preview Transfer Asset Order
        • Create a Transfer Order
        • Preview NFT Drop
        • Claim NFT Order
        • Fetch An Order
        • Fetch All Orders
      • Auth
        • Secure Action
        • Secure Action Verify
Powered by GitBook
On this page

Was this helpful?

  1. Metasky API Collection
  2. API List
  3. Orders

Fetch Listing Details

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

PreviousOrdersNextPreview Transfer Asset Order

Last updated 1 year ago

Was this helpful?

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
400
Invalid request
application/json
404
Listing not found
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"
    }
  }
}