Get asset information
GEThttp://localhost:1234/assets/:assetId
Get asset information
Request
Path Parameters
assetId assetIdrequired
The unique identifier of the asset
Responses
- 200
The asset information.
- application/json
- Schema
- Example (auto)
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
{
"id": 0,
"NftAddress": "0xf9692336d7f37336c2061a545d8b2895b1415efe",
"cid": "string",
"alias": "string"
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear