내 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...

```json
{
    "return": 0,
    "message": "success",
    "value": {
        "page_offset": 1,
        "page_size": 10,
        "total_count": 1,
        "my_nfts": [
            {
                "thumbnail_path": "https://innofile.blob.core.windows.net/inno/stage/nft/pack/693/thumb.png",
                "nft_id": 3002359,
                "nft_pack_id": 693,
                "nft_pack_name": "test dynamic",
                "original_extension": "png",
                "explanation": "{}",
                "purchase_date": "2024-12-04T05:59:02.184Z",
                "status": 3,
                "coin_id": 8,
                "quantity": -0.01,
                "tx_hash": "HM2WSNZ2ivDm8Lt1xV6XuHdaHLaLih4Xuzx3s1nCaQ41",
                "dynamic_nft": {
                    "dynamic_nft_id": 3002361,
                    "dynamic_nft_lv": 1,
                    "dynamic_thumbnail_path": "https://innofile.blob.core.windows.net/inno/stage/nft/pack/693/thumb.png"
                }
            }
        ]
    }
}
```

curl --location --request GET 'https://localhost:51071/v1.0/mypage/nft/list' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsI....'

Last updated