list_owned_objects
Retrieve raw objects owned by a Sui address, filter by type, and paginate results. Supports mainnet, testnet, and devnet.
Instructions
List raw objects owned by a Sui address with optional type filter and pagination. For NFTs specifically, prefer list_nfts (resolves kiosk storage, extracts display metadata). For a wallet summary, prefer get_wallet_overview.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 50, max 1000) | |
| owner | Yes | Owner address (0x...) | |
| cursor | No | Pagination cursor from previous response | |
| network | No | Which Sui network to run this call against: 'mainnet' (default), 'testnet', or 'devnet'. Set this per-call — different tool calls in the same session can target different networks (e.g. to compare a value on testnet against mainnet). | |
| object_type | No | Filter by object type (e.g. 0x2::coin::Coin<0x2::sui::SUI>) |