Skip to main content

Get asset information

GET 

http://localhost:1234/assets/:assetId

Get asset information

Request

Path Parameters

    assetId assetIdrequired

    The unique identifier of the asset

Responses

The asset information.

Schema
    idnumber

    The id of the asset

    NftAddressstring

    The wallet address of the user. The address is in EIP-55.

    Example: 0xf9692336d7f37336c2061a545d8b2895b1415efe
    cidstring

    Content Identifier

    aliasstring

    The alias of the asset

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:1234/assets/:assetId");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
http://localhost:1234
Parameters
— pathrequired
ResponseClear

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