v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Collection NFT List

Returns the NFT list of a NFT collection by a given object type.

get/sui/nft/list

Query parameters

objectTypestring required

string - the object type for the collection to get the NFT list.

cursorstring

next page cursor.

limitinteger

the maximum number of results to return per page. Defaults to 20, maximum is 50.

Response

200

codeinteger
messagestring

Example response

{
  "code": 200,
  "message": "Success",
  "result": {
    "data": [
      {
        "ObjectId": "0x96f74dffe93091517036def06cee98dc5ea383e593eaeb034f38bf0350eed49a",
        "Type": "otherNFT",
        "ObjectType": "0xcee8e9c7bb7ececa8c4097556ee3b5d4023c35ccee2603cf6745ad832461fff2::gamio_collection_snake_legend::SnakeLegend",
        "Name": "Hunting Snake Legends #223",
        "Owner": "0xefa32afb61904f2132d93012263ee103d0c4a157f16e1523055935224667e51b",
        "ImageURL": "https://ipfs.io/ipfs/bafybeiffwnc2vfhd4a3ltgxodx5vya4xggcwsafp6srxuounsbixjfggqe/501.png",
        "Version": 2088944,
        "CreatedTime": 1683660926875
      }
    ],
    "nextPageIndex": 2,
    "total": 570
  }
}