> ## 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 V-Matrix

> Retrieve character V-Matrix information using the character asset key

## Path parameters

<ParamField path="assetKey" type="string" required>
  The character asset key
</ParamField>

## Response

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

<ResponseField name="data" type="object">
  <Expandable title="properties">
    <ResponseField name="matrixPoint" type="integer">
      Matrix points available
    </ResponseField>

    <ResponseField name="vCoreShardCount" type="integer">
      Number of V-Core shards
    </ResponseField>

    <ResponseField name="vMatrixSlots" type="array">
      List of V-Matrix slot objects
    </ResponseField>

    <ResponseField name="vMatrixNodes" type="array">
      List of V-Matrix node objects
    </ResponseField>
  </Expandable>
</ResponseField>

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

  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": {
      "matrixPoint": 0,
      "vCoreShardCount": 0,
      "vMatrixSlots": [],
      "vMatrixNodes": []
    }
  }
  ```
</ResponseExample>
