> ## 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 collection list

> Retrieve a list of collection owned by a wallet address

## Path parameters

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

## Query parameters

<ParamField query="paginationParam.lastKey" type="string">
  Last key for pagination
</ParamField>

<ParamField query="paginationParam.pageSize" type="integer">
  Number of items per page
</ParamField>

<ParamField query="traceId" type="string">
  Request trace ID
</ParamField>

## Response

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

<ResponseField name="data" type="object">
  <Expandable title="properties">
    <ResponseField name="collection" type="array">
      List of collection items
    </ResponseField>

    <ResponseField name="paginationResult" type="object">
      Pagination information
    </ResponseField>

    <ResponseField name="traceId" type="string">
      Request trace ID
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/collection' \
    --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}/collection', {
    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}/collection"

  headers = {
    "x-nxopen-api-key": "YOUR_API_KEY"
  }

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

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "collection": [],
      "paginationResult": {},
      "traceId": "string"
    }
  }
  ```
</ResponseExample>

## Notes

* Pagination is supported, with range of 1 to 200 items per page
* Default pagination: pageSize=10
