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

# Get Wallet Item List

> Retrieve a list of items owned by a wallet address. Pagination is supported, with range of 1 to 200 items per page. Default pagination: pageNo=1, pageSize=10

## Path parameters

<ParamField path="walletAddress" type="string" required>
  The wallet address to query
</ParamField>

## Query parameters

<ParamField query="categoryNo" type="integer">
  categoryNo
</ParamField>

<ParamField query="isOnSale" type="boolean">
  isOnSale
</ParamField>

<ParamField query="tokenName" type="string">
  tokenName
</ParamField>

<ParamField query="cursor" type="string">
  cursor
</ParamField>

<ParamField query="size" type="integer">
  size
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates if the request was successful
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="properties">
    <ResponseField name="elements" type="array">
      elements
    </ResponseField>

    <ResponseField name="nextCursor" type="string">
      nextCursor
    </ResponseField>

    <ResponseField name="hasMore" type="boolean">
      hasMore
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/items?categoryNo=0&isOnSale=true&tokenName=string&cursor=string&size=0' \
    --header 'Content-Type: application/json' \
    --header 'x-nxopen-api-key: YOUR_API_KEY'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://openapi.msu.io/v1rc1/accounts/{walletAddress}/items?categoryNo=0&isOnSale=true&tokenName=string&cursor=string&size=0', {
    method: 'GET',
    headers: {
      'Content-Type': 'application/json',
      'x-nxopen-api-key': 'YOUR_API_KEY'
    }
  });
  const data = await response.json();
  ```

  ```python Python theme={null}
  import requests

  url = "https://openapi.msu.io/v1rc1/accounts/{walletAddress}/items"
  params = {
    "categoryNo": 0
    "isOnSale": True
    "tokenName": "string"
    "cursor": "string"
    "size": 0
  }
  headers = {
    "x-nxopen-api-key": "YOUR_API_KEY"
  }

  response = requests.get(url, params=params, headers=headers)
  data = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "elements": [],
      "nextCursor": "string",
      "hasMore": false
    }
  }
  ```
</ResponseExample>
