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

NameTypeDescription

id*

Number

Represents nft-item attribute's identifier

Headers

NameTypeDescription

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

KeyTypeDescription

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