내 NFT 목록
GET
https://{market-domain}/v1.0/mypage/nft/list
Query Parameters
Name
Type
Description
page_offset
int64
페이지 번호 (default : 1)
page_size
int64
페이지 크기 (default : 8)
app_id
int64
검색할 app_id
0 : 모든 app에 검색
grade_id
int64
검색할 grade_id
0 : 모든 등급
1 ~ : 해당 등급만 검색
Headers
Name
Type
Description
Authorization*
String
Bearer eyJhbGciOiJIUzI1NiI...
{
"return": 0,
"message": "success",
"value": {
"page_offset": 1,
"page_size": 10,
"total_count" : 1,
"my_nfts": [
{
"thumbnail_path": "https://onbufffile.blob.core.windows.net/inno/dev/nft/pack/104/thumb.png",
"nft_id": 2001727,
"nft_pack_id": 103,
"nft_pack_name": "funigloo Rank #4",
"original_extension":"jpg",
"explanation": "Rank #4 ability",
"purchase_date": "2022-07-12T07:00:27.334Z",
"status": 3,
"coin_id": 4,
"quantity": -0.0001,
"tx_hash": "sale_test "
}
]
}
}
curl --location --request GET 'https://localhost:51071/v1.0/mypage/nft/list' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsI....'
Last updated