Filter Nft Item Transfers

This service returns Nft item transfers with pagination

Filter Nft Item Transfers

GET {{server-url}}/nft-items/attributes/filter

It returns list of Nft item transfers with pagination

Query Parameters

NameTypeDescription

page

Number

Represents page number. Default 0

address

String

Represents transfer's sender or receiver address

orderDirection

String

Represents order direction. It can be ASC or DESC. Default DESC

size

Number

Represents content size. Default 10

operatorAddress

Number

Represents the wallet address, who was triggered the Nft Item action

toAddress

String

Represents receiver wallet address of Nft Item action

fromAddress

String

Represents sender wallet address of Nft Item Action

nftItemId

String

Represents Nft Item's identifier

nftItemName

String

Represents Nft Item's name

type

String

Represents action type. It can be MINT, BURN, TRANSFER, LIST_ON_MARKETPLACE, BUY_FROM_MARKETPLACE, UNLIST_FROM_MARKETPLACE

Headers

NameTypeDescription

Authorization*

String

UUID formatted access token

PROJECT-ID*

String

UUID formatted project's identifier

{
    // Response
}

Example Response Body

{
    "data": {
        "content": [
            {
                "operatorAddress": "0xaca4bea89decba0ac9922f12370a777251463632",
                "fromAddress": "0xaca4bea89decba0ac9922f12370a777251463632",
                "toAddress": "0x4f5582162b2b98140765f412bef5f8e4654f9f2e",
                "amount": 1,
                "nftItem": {
                    "id": 1167562,
                    "name": "Blue Dinosaur #3",
                    "description": "It changes the color of the project theme and makes it blue.",
                    "url": "https://qafnftstaging.s3.eu-west-1.amazonaws.com/blue.png",
                    "totalSupply": 1,
                    "contractType": "ERC721",
                    "status": "MINTED",
                    "attributes": [
                        {
                            "id": 1167563,
                            "traitType": "Color",
                            "value": "blue",
                            "icon": "https://www.freeiconspng.com/uploads/colors-icon-4.png"
                        },
                        {
                            "id": 1167564,
                            "traitType": "Acceleration",
                            "value": "1",
                            "icon": "https://cdn-icons-png.flaticon.com/512/1819/1819423.png"
                        },
                        {
                            "id": 1167565,
                            "traitType": "Height",
                            "value": "47",
                            "icon": "https://i.im.ge/2022/07/05/u00O4K.png"
                        }
                    ],
                    "categories": []
                },
                "creationDate": "2022-10-25T13:11:22.951946+03:00",
                "type": "LIST_ON_MARKETPLACE",
                "transactionHash": "0x429cce1bf180055d3167907285f378544a5299ed1afbb410d57b830e849d152c"
            },
            {
                "operatorAddress": "0xaca4bea89decba0ac9922f12370a777251463632",
                "fromAddress": "0xaca4bea89decba0ac9922f12370a777251463632",
                "toAddress": "0x4f5582162b2b98140765f412bef5f8e4654f9f2e",
                "amount": 1,
                "nftItem": {
                    "id": 1167562,
                    "name": "Blue Dinosaur #3",
                    "description": "It changes the color of the project theme and makes it blue.",
                    "url": "https://qafnftstaging.s3.eu-west-1.amazonaws.com/blue.png",
                    "totalSupply": 1,
                    "contractType": "ERC721",
                    "status": "MINTED",
                    "attributes": [
                        {
                            "id": 1167563,
                            "traitType": "Color",
                            "value": "blue",
                            "icon": "https://www.freeiconspng.com/uploads/colors-icon-4.png"
                        },
                        {
                            "id": 1167564,
                            "traitType": "Acceleration",
                            "value": "1",
                            "icon": "https://cdn-icons-png.flaticon.com/512/1819/1819423.png"
                        },
                        {
                            "id": 1167565,
                            "traitType": "Height",
                            "value": "47",
                            "icon": "https://i.im.ge/2022/07/05/u00O4K.png"
                        }
                    ],
                    "categories": []
                },
                "creationDate": "2022-10-25T13:11:22.79299+03:00",
                "type": "LIST_ON_MARKETPLACE",
                "transactionHash": "0x429cce1bf180055d3167907285f378544a5299ed1afbb410d57b830e849d152c"
            },
        ],
        "pageable": {
            "sort": {
                "sorted": true,
                "unsorted": false,
                "empty": false
            },
            "pageNumber": 0,
            "pageSize": 10,
            "offset": 0,
            "paged": true,
            "unpaged": false
        },
        "totalPages": 1,
        "totalElements": 2,
        "last": true,
        "numberOfElements": 2,
        "number": 0,
        "first": true,
        "size": 10,
        "sort": {
            "sorted": true,
            "unsorted": false,
            "empty": false
        },
        "empty": false
    },
    "message": null,
    "code": 0,
    "error": false
}

Response Fields

KeyTypeDescription

operatorAddress

String

Represents the wallet address, who was triggered the Nft Item action

toAddress

String

Represents receiver wallet address of Nft Item action

fromAddress

String

Represents sender wallet address of Nft Item Action

nftItem

Object

Represents Nft Item

amount

Number

Represents count of Nft Item

type

String

Represents action type. It can be MINT, BURN, TRANSFER, LIST_ON_MARKETPLACE, BUY_FROM_MARKETPLACE, UNLIST_FROM_MARKETPLACE

transactionHash

String

Represents blockchain's transaction hash

Last updated