Get Nft Item Attribute Detail
This service returns Nft item attribute object for the specified id parameter.
Get Nft Item Attribute Detail
GET
{{server-url}}/nft-items/attributes/:id
It returns Nft item attribute object
Path Parameters
Name
Type
Description
id*
Number
Represents nft-item attribute's identifier
Headers
Name
Type
Description
Authorization*
String
UUID formatted access token
{
// Response
}
Example Response Body
{
"data": {
"id": 1255,
"traitType": "Weight",
"value": "60",
"icon": "icon"
},
"message": null,
"code": 0,
"error": false
}
Response Fields
Key
Type
Description
id
Number
Represents nft item attribute's identifier.
traitType
String
Represents attribute's name.
value
String
Represents attribute's value
icon
String
Represents attribute's icon url.
Last updated