Skip to main content

Get the NFT data by an ID

GET 

//v1/chain/core/accounts/nftdata/:nftID

Get the NFT data by an ID

Request

Path Parameters

    nftID stringrequired

    NFT ID (Hex)

Query Parameters

    block string

    Block index or trie root

Responses

Unauthorized (Wrong permissions, missing token)

Schema
    errorstringrequired
    missingPermissionstringrequired
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/v1/chain/core/accounts/nftdata/:nftID");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
Parameters
— pathrequired
— query
ResponseClear

Click the Send API Request button above and see the response here!