App과 Account 계정에 귀속된 전체 NFT 리스트 요청
GET https://{market-domain}/v1.0/app/nft/member/list
Query Parameters
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
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.......'
page_offset
int64
page_size
int64
total_count
int64
total nft count
nft_packs
json object array
json 배열
nft_id
int64
NFT 고유 ID
nft_pack_id
int64
NFT pack 고유 ID
custom_properties
string
nft_id와 매칭 되는 개발사 전용 데이터 ( max length : 1000 )
purchase_dt
string
구매 날짜(ISO 8601)
effect
string
NFT 효과
0
success
성공
20004
Invalid jwt token
유효하지 못한 auth token
60008
Requires auid information.
유효한 auid 정보 필요
60010
Requires muid information.
mu_id 정보가 필요합니다.
64027
Failed to load member nft list
계정 NFT 리스트 조회 실패
64105
Invalid Parameter 'page_offset' or 'page_size'
유효하지 못한 page_offset 혹은 page_size
Last updated