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

# Assets

## Endpoint

```text theme={null}
POST /info
```

## Request Body

| Parameter | Type   | Description         |
| --------- | ------ | ------------------- |
| `type`\*  | string | Must be `"assets"`  |
| `user`\*  | string | User wallet address |

## Response

```json theme={null}
[
  {
    "asset": "00012710",
    "segregated": "0",
    "total": "10000.00",
    "hold": "0",
    "coin": "USDC",
    "ltv": "1",
    "liability": {
      "marginBorrowed": "0",
      "persistedDebt": "0",
      "totalDebt": "0"
    }
  }
]
```

## Response Fields

| Field        | Type   | Description                                        |
| ------------ | ------ | -------------------------------------------------- |
| `asset`      | string | 8-char AssetId hex string                          |
| `segregated` | string | Segregated balance                                 |
| `total`      | string | Total balance                                      |
| `hold`       | string | Amount held for pending protocol actions           |
| `coin`       | string | Display symbol                                     |
| `ltv`        | string | Loan-to-value ratio derived from collateral policy |
| `liability`  | object | Borrowed and persisted debt amounts for the asset  |

## Notes

<Note>
  * `asset` is serialized without a `0x` prefix. - `liability.totalDebt` is `marginBorrowed +
      persistedDebt`.
</Note>
