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

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

Query Parameters

Name
Type
Description

page_offset*

int64

page 번호 (MIN : 1 ~ N)

page_size*

int64

한 page 크기 (MIN : 1 ~ MAX : 200)

au_id*

int64

계정 로그인/가입 시 발급 받은 au_id

mu_id*

int64

계정 로그인/가입 시 발급 받은 mu_id

Headers

Name
Type
Description

Authorization*

string

Bearer {{app-access-token}}

{
    "return": 0,
    "message": "success",
    "value": {
        "au_id": 5030,
        "page_offset": 1,
        "page_size": 20,
        "total_count": 6,
        "nft_packs": [
            {
                "nft_id": 3003710,
                "nft_pack_id": 705,
                "custom_properties": "",
                "purchase_dt": "2025-05-30T06:53:18.315Z"
            },
            {
                "nft_id": 3003726,
                "nft_pack_id": 705,
                "custom_properties": "",
                "purchase_dt": "2025-06-05T06:02:09.861Z"
            },
            {
                "nft_id": 3003786,
                "nft_pack_id": 748,
                "custom_properties": "",
                "purchase_dt": "2025-06-23T11:03:22.947Z"
            }
        ]
    }
}

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