RADAR Docs
  • bot_help
    • alpha
      • announce_channels
      • call
      • register
      • resend
    • analytics
      • chart
      • floor
      • info
      • terminal
    • collections
      • add
      • edit
      • manage
      • remove
    • impostor
      • register
      • unregister
      • unwhitelist
      • whitelist
    • multisig
      • add_signer
      • create
      • sign
    • profiles
      • add_availability
      • afk
      • availability
      • back
      • referral
      • register
      • remove_availability
      • set_afk_message
      • set_timezone
    • raid
      • channel
      • panel
      • register
      • resend
      • role
      • subscribe
      • tweet
    • rarity
      • check
      • rank
      • scraper
      • snipe
    • secret
      • announce_channels
      • author
      • delete
      • edit
      • note
      • resend
    • server
      • backup
      • holder_welcome
      • holder_welcome_remove
      • holder_welcome_test
      • txt2discord
      • undo
    • shop
      • add_category
      • add_product
      • buy
      • create
      • fund
      • open
      • update_product
      • update_shop
    • tools
      • snapshot
    • verification
      • add
      • blacklist
      • manual
      • panel
      • profile
      • refresh_hashlist
      • register
      • role
      • test_token
      • toggle
      • unblacklist
    • votes
      • clear
      • create
      • extend
      • max_weight
      • multipliers
      • resend
    • whalewatch
      • add
      • settings
    • whitelist
      • add_role
      • create
      • enter
      • export
      • manage
      • minimum_balance
      • panel
      • remove
      • stats
      • update
      • wipe
  • api_documentation
    • docs
      • nft
        • Get NFT 🚀 - /nft/moonrank/{mint_address}
        • Get Guild Royalty Dashboard 💸 - /nft/guild_royalty_data/{guild_id}/dashboard
        • Get Multiple NFT Metadata 🔎 - /nft/metadata/multiple/
        • Get NFT Owner Information 🔎 - /nft/{mint}/owner
        • Retrieve Holder Snapshot for NFT 📊 - /nft/holder_snapshot
        • Royalties Status by Address 💰 - /nft/royalty_status_address/{address}
        • Royalties Status of Multiple NFTs 💰 - /nft/royalty_status_multiple_nfts
        • Royalties Status of NFT 💰 - /nft/royalty_status_nft/{nft}
Powered by GitBook
On this page
  • 🧭 Path Parameters
  • 📈 Return Type
  • 📝 Description
  • 🔨 Usage Example

Was this helpful?

  1. api_documentation
  2. docs
  3. nft

Get Multiple NFT Metadata 🔎 - /nft/metadata/multiple/

🧭 Path Parameters

Name
Type
Required
Description

uris

List[str]

True

A list of NFT URIs to retrieve metadata for

📈 Return Type

{
    "request": <class 'starlette.requests.Request'>,
    "uris": list[str]
}

📝 Description

This endpoint allows you to retrieve metadata for multiple NFTs in a single request, using a list of NFT URIs as input. The returned data will include metadata such as the NFT's name, description, and image. The data is returned as a list of dictionaries, with each dictionary representing the metadata for a single NFT.

🔨 Usage Example

import requests

url = "https://api.example.com/nft/metadata/multiple/"

headers = {
    "Content-Type": "application/json"
}

data = {
    "uris": [
        "https://arweave.net/EK-i8p7tN5v5NnDzIgHNxWfzgA1b-9YQ2-LgLWmG4i4",
        "https://arweave.net/BvSvU9X9d-z6U8W6-AfzsZsT7FQ1iZxWlTghOvxtyX0"
    ]
}

response = requests.post(url, headers=headers, json=data)

print(response.json())
PreviousGet Guild Royalty Dashboard 💸 - /nft/guild_royalty_data/{guild_id}/dashboardNextGet NFT Owner Information 🔎 - /nft/{mint}/owner

Last updated 2 years ago

Was this helpful?