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. Wallet

Fetch NFT Details

This API fetches all the details of a particular NFT present in user's wallet.

PreviousFetch All Coin BalancesNextFetch System Health Status

Last updated 1 year ago

Was this helpful?

Fetch NFT details

get
Path parameters
nft_uuidstringRequired
Responses
200
NFT balances fetched successfully
application/json
400
Invalid request
application/json
401
Authorization error
application/json
404
Nft not found
application/json
get
GET /api/v1/wallet/tokens/nfts/{nft_uuid} HTTP/1.1
Host: www.developer.metasky.me
Accept: */*
{
  "message": "Coin balances fetched successfully",
  "status": "success",
  "request_id": "7e0c3676-82c9-43dc-8678-61bc4aa7c72c",
  "data": {
    "nft": {
      "nft_uuid": "nftsbobo4-4d0d-4b16-a580-2e29cb8e73e7",
      "collection_uuid": "tokenbobo4-4d0d-4b16-a580-2e29cb8e73e7",
      "quantity": 10,
      "onchain_token_id": "3",
      "onchain_contract_address": "0x0500065b7943102e06c31dc16a8d2a7414330d7a",
      "image": "https://skywallet-public-resources.s3.ap-southeast-1.amazonaws.com/pebblepotli/potli.png",
      "animation": "https://skywallet-public-resources.s3.ap-southeast-1.amazonaws.com/pebblepotli/potli.gif",
      "description": "A mystical handbag that holds 20000 pebbles. Offer your pebble potli along with Minato Chitoseame Candy in Tanuki shrine to claim Minato Chan PFP.",
      "name": "Pebble potli",
      "media_type": "image",
      "properties": {},
      "creator": {
        "name": "Tanukiverse",
        "onchain_address": "tanukiverse.eth"
      },
      "network": {
        "type": "EVM",
        "chain_id": "1",
        "name": "ETHEREUM"
      },
      "rarity": 0.3,
      "rarityRank": 10
    }
  }
}