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

Headers

{
    // 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

Last updated