Get NFT Owner Information 🔎 - /nft/{mint}/owner

Path Parameters

NameTypeDescription

mint

str

The id of the NFT to retrieve the owner information of

Return Type

NameType

mint

str

wallet_address

str

member

dict

Description

This endpoint returns the owner information for a specific NFT, including the NFT id, wallet address of the owner, and information about the owner (if available).

Example Usage

import requests

mint = "6rzjrKj7AJzK6xK7pjK6xK7pjK6xK7pjK6xK7pjK6xK7pjK6xK7p"

response = requests.get(f"https://your-domain.com/nft/{mint}/owner")
print(response.json())

Example Response

{
    "mint": "6rzjrKj7AJzK6xK7pjK6xK7pjK6xK7pjK6xK7pjK6xK7pjK6xK7p",
    "wallet_address": "7jK6xK7pjK6xK7pjK6xK7pjK6xK7pjK6xK7pjK6x",
    "member": {
        "id": 1234567890,
        "name": "ExampleUser",
        "avatar": "https://cdn.discordapp.com/avatars/1234567890/abcdefghijklmnopqrstuvwxyz.png",
        "discriminator": "1234",
        "bot": false,
        "display_name": "Example User",
        "mention": "<@1234567890>"
    }
}

Last updated