> For the complete documentation index, see [llms.txt](https://fixt.gitbook.io/apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fixt.gitbook.io/apis/reference/spot/assets.md).

# Assets

## Assets

<mark style="color:green;">`GET`</mark> <https://sapi.fixt.io/api/v0/assets>

#### Response Body

| Name                                                                                                             | Type    | Description                                                                                                                                                                                 |
| ---------------------------------------------------------------------------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| name                                                                                                             | string  | Full name of cryptocurrency.                                                                                                                                                                |
| [unified\_cryptoasset\_id](https://docs.google.com/document/d/1a5JfNE8aXusvfZBnEokwzp1-vGNJ_SPo-jIXhfnnEYE/edit) | integer | Unique ID of cryptocurrency assigned by[ Unified Cryptoasset ID](https://pro-api.coinmarketcap.com/v1/cryptocurrency/map?CMC_PRO_API_KEY=UNIFIED-CRYPTOASSET-INDEX\&listing_status=active). |
| can\_withdraw                                                                                                    | boolean | Identifies whether withdrawals are enabled or disabled.                                                                                                                                     |
| can\_deposit                                                                                                     | boolean | Identifies whether deposits are enabled or disabled.                                                                                                                                        |
| min\_withdraw                                                                                                    | decimal | Identifies the single minimum withdrawal amount of a cryptocurrency.                                                                                                                        |
| max\_withdraw                                                                                                    | decimal | Identifies the single maximum withdrawal amount of a cryptocurrency.                                                                                                                        |
| maker\_fee                                                                                                       | decimal | Fees applied when liquidity is added to the order book.                                                                                                                                     |
| taker\_fee                                                                                                       | decimal | Fees applied when liquidity is removed from the order book.                                                                                                                                 |
| contract\_address\_url                                                                                           | string  |                                                                                                                                                                                             |
| contract\_address                                                                                                | string  |                                                                                                                                                                                             |

{% tabs %}
{% tab title="200" %}

```javascript
{
    "status":"true",
    "msg":"success",
    "result": {
        "BTC" : {
            "name": "bitcoin",
            "unified_cryptoasset_id": 1,
            "can_withdraw": true,
            "can_deposit": true,
            "min_withdraw": 0,
            "max_withdraw": 0,
            "maker_fee": 0.01,
            "taker_fee": 0.01,
            "contract_address_url": "",
            "contract_address": "",
        }, ...
    {
}
```

{% endtab %}
{% endtabs %}
