> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uniblock.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# suix_getOwnedObjects

> Return the list of objects owned by an address. Note that if the address owns more than QUERY_MAX_RESULT_LIMIT objects, the pagination is not accurate, because previous page may have been updated when the next page is fetched. Please use suix_queryObjects if this is a concern.

### Parameters

<ParamField query="chainId" type="string" default="sui" required>
  Unique identifier for a blockchain network.
</ParamField>

<ParamField body="id" type="number" default={1} required>
  Request identifier used to match responses.
</ParamField>

<ParamField body="jsonrpc" type="string" default="2.0" required>
  JSON-RPC version.
</ParamField>

<ParamField body="method" type="string" default="suix_getOwnedObjects" required>
  JSON-RPC method name.
</ParamField>

<ParamField body="params" type="object" default={["0xdbc9abc01a87906b033a75750e741edb2df5ea5d55c96a611371d22799d26827",{"filter":{"MatchAll":[{"StructType":"0x2::coin::Coin<0x2::sui::SUI>"},{"AddressOwner":"0xdbc9abc01a87906b033a75750e741edb2df5ea5d55c96a611371d22799d26827"},{"Version":"13488"}]},"options":{"showType":true,"showOwner":true,"showPreviousTransaction":true,"showDisplay":false,"showContent":false,"showBcs":false,"showStorageRebate":false}},"0x0cd4bb4d4f520fe9bbf0cf1cebe3f2549412826c3c9261bff9786c240123749f",3]} placeholder="[&#x22;0xdbc9abc01a87906b033a75750e741edb2df5ea5d55c96a611371d22799d26827&#x22;,{&#x22;filter&#x22;:{&#x22;MatchAll&#x22;:[{&#x22;StructType&#x22;:&#x22;0x2::coin::Coin<0x2::sui::SUI>&#x22;},{&#x22;AddressOwner&#x22;:&#x22;0xdbc9abc01a87906b033a75750e741edb2df5ea5d55c96a611371d22799d26827&#x22;},{&#x22;Version&#x22;:&#x22;13488&#x22;}]},&#x22;options&#x22;:{&#x22;showType&#x22;:true,&#x22;showOwner&#x22;:true,&#x22;showPreviousTransaction&#x22;:true,&#x22;showDisplay&#x22;:false,&#x22;showContent&#x22;:false,&#x22;showBcs&#x22;:false,&#x22;showStorageRebate&#x22;:false}},&#x22;0x0cd4bb4d4f520fe9bbf0cf1cebe3f2549412826c3c9261bff9786c240123749f&#x22;,3]" required>
  Parameters for suix\_getOwnedObjects: \[address, query, cursor, limit]. Only the address is required; query, cursor, and limit are optional.

  Positional parameters for <code>suix\_getOwnedObjects</code>:

  <ul>
    <li><code>params\[0]</code>: The owner's Sui address.</li>
    <li><code>params\[1]</code>: Optional objects query criteria.</li>
    <li><code>params\[2]</code>: 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.</li>
    <li><code>params\[3]</code>: Maximum number of items returned per page. Defaults to QUERY\_MAX\_RESULT\_LIMIT if not specified.</li>
  </ul>
</ParamField>

### Returns

<ResponseField name="result" type="object">
  Response object for suix\_getOwnedObjects. Contains a page of SuiObjectResponse objects and pagination info.

  <Expandable title="properties">
    <ResponseField name="data" type="array">
      An array of SuiObjectResponse objects.

      <Expandable title="items">
        <ResponseField name="items[]" type="object">
          A Sui object response representing one owned object. This object may include various fields (e.g., objectId, owner, content, etc.).
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="hasNextPage" type="boolean">
      Indicates if there is a next page of results.
    </ResponseField>

    <ResponseField name="nextCursor" type="oneOf">
      Paging cursor for the next page. If null, there are no additional results.

      <Expandable title="variants">
        <ResponseField name="variant1" type="string" />

        <ResponseField name="variant2" type="string" />
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash Curl theme={null}
  curl --request POST \
    --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=sui \
    --header 'content-type: application/json' \
    --data '{
      "id": 1,
      "jsonrpc": "2.0",
      "method": "suix_getOwnedObjects",
      "params": [
        "0xdbc9abc01a87906b033a75750e741edb2df5ea5d55c96a611371d22799d26827",
        {
          "filter": {
            "MatchAll": [
              {
                "StructType": "0x2::coin::Coin<0x2::sui::SUI>"
              },
              {
                "AddressOwner": "0xdbc9abc01a87906b033a75750e741edb2df5ea5d55c96a611371d22799d26827"
              },
              {
                "Version": "13488"
              }
            ]
          },
          "options": {
            "showType": true,
            "showOwner": true,
            "showPreviousTransaction": true,
            "showDisplay": false,
            "showContent": false,
            "showBcs": false,
            "showStorageRebate": false
          }
        },
        "0x0cd4bb4d4f520fe9bbf0cf1cebe3f2549412826c3c9261bff9786c240123749f",
        3
      ]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
      "data": [
        {
          "data": {
            "__truncated": true
          }
        },
        {
          "data": {
            "__truncated": true
          }
        },
        {
          "data": {
            "__truncated": true
          }
        }
      ],
      "nextCursor": "0xe26860fac6839ce2d7ed7e6f29d276a1b4c23f2d9a9b6f0d8b2c17beace292b7",
      "hasNextPage": true
    }
  }
  ```
</ResponseExample>
