App과 Account 계정에 귀속된 전체 NFT 리스트 요청

GET https://{market-domain}/v1.0/app/nft/member/list

Query Parameters

Headers

{
    "return": 0,
    "message": "success",
    "value": {
        "au_id": 5,
        "page_offset": 1,
        "page_size": 10,
        "total_count": 4,
        "nft_packs": [
            {
                "nft_id": 186,
                "nft_pack_id": 8,
                "custom_properties": "oh my custom properties for 186 NFT"
            },
            {
                "nft_id": 406,
                "nft_pack_id": 89,
                "custom_properties": "oh my custom properties for 406 NFT"
            },
            {
                "nft_id": 407,
                "nft_pack_id": 89,
                "custom_properties": ""
            },
            {
                "nft_id": 408,
                "nft_pack_id": 89,
                "custom_properties": ""
            }
        ]
    }
}

curl --location --request GET 'https://{{market-domain}}/v1.0/app/nft/member/list?page_offset=2&page_size=10&au_id=1' --header 'Authorization: Bearer eyJhbGciOiJIUzI1N.......'

Last updated