> ## 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 Character List

> Retrieve a list of characters associated with the given wallet address. Pagination is supported, with range of 1 to 100 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="isTradable" type="boolean">
  isTradable
</ParamField>

<ParamField query="name" type="string">
  name
</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="characters" type="array">
      characters
    </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}/characters?isTradable=true&name=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}/characters?isTradable=true&name=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}/characters"
  params = {
    "isTradable": True
    "name": "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": {
      "characters": [],
      "nextCursor": "string",
      "hasMore": false
    }
  }
  ```
</ResponseExample>
