App에 귀속된 전체 NFT 리스트 요청

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

Query Parameters

Name
Type
Description

page_offset

int64

page 번호 (MIN : 1 ~ N)

page_size

int64

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

Headers

Name
Type
Description

Authorization*

string

Bearer {{app-access-token}}

{
    "return": 0,
    "message": "success",
    "value": {
        "app_id": 1,
        "page_offset": 2,
        "page_size": 10,
        "nft_packs": [
            {
                "nft_pack_id": 1,
                "nft_pack_name": "good game nft 1",
                "effect": "[{"app_id":"2","description":"Purchasing Labyrinth Fat #2 increases HP 100 and MP 100 synergy.","properties":[{"trait_type":"HP","value":100},{"trait_type":"MP","value":100}]},{"app_id":"1","description":"Purchasing PoringMerge Fat #2 increases HP 100 and MP 200 synergy.","properties":[{"trait_type":"HP","value":100},{"trait_type":"MP","value":200}]}]"
            },
            {
                "nft_pack_id": 2,
                "nft_pack_name": "good game nft 2",
                "effect" : "[{"app_id":"2","description":"Purchasing Labyrinth Fat #2 increases HP 1000 and MP 1000 synergy.","properties":[{"trait_type":"HP","value":1000},{"trait_type":"MP","value":1000}]},{"app_id":"1","description":"Purchasing PoringMerge Fat #2 increases HP 2000 and MP 4000 synergy.","properties":[{"trait_type":"HP","value":2000},{"trait_type":"MP","value":4000}]}]"
            }
        ]
    }
}

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

Last updated