Skip to main content

Parameters

chainId
string
default:"sui"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"suix_getOwnedObjects"
required
JSON-RPC method name.
params
object
required
Parameters for suix_getOwnedObjects: [address, query, cursor, limit]. Only the address is required; query, cursor, and limit are optional.Positional parameters for suix_getOwnedObjects:
  • params[0]: The owner’s Sui address.
  • params[1]: Optional objects query criteria.
  • params[2]: Optional paging cursor. If provided, the query will start from the next item after the specified cursor. If not provided, paging starts from the first item.
  • params[3]: Maximum number of items returned per page. Defaults to QUERY_MAX_RESULT_LIMIT if not specified.

Returns

result
object
Response object for suix_getOwnedObjects. Contains a page of SuiObjectResponse objects and pagination info.