# Assets ## Rate limits * 1200 requests/min or 20 requests/sec per IP address. (**weight = 2**) {% hint style="info" %} See more details in [API Rate limits](https://docs.nado.xyz/developer-resources/api/rate-limits) {% endhint %} ## Request {% tabs %} {% tab title="Get assets" %} **GET** `[GATEWAY_V2_ENDPOINT]/assets` {% endtab %} {% endtabs %} ## Response ```json [ { "product_id": 0, "ticker_id": null, "market_type": null, "name": "USDT0", "symbol": "USDT0", "taker_fee": null, "maker_fee": null, "can_withdraw": true, "can_deposit": true }, { "product_id": 2, "ticker_id": "BTC-PERP_USDT0", "market_type": "perp", "name": "Bitcoin Perp", "symbol": "BTC-PERP", "maker_fee": 0.0002, "taker_fee": 0, "can_withdraw": false, "can_deposit": false }, { "product_id": 1, "ticker_id": "BTC_USDT0", "market_type": "spot", "name": "Bitcoin", "symbol": "BTC", "taker_fee": 0.0003, "maker_fee": 0, "can_withdraw": true, "can_deposit": true } ] ``` ## Response Fields
Field nameTypeNullableDescription
product_idnumberNoInternal unique ID of spot / perp product
namestringNoAsset name (as represented internally in the exchange).
symbolstringNoAsset symbol (as represented internally in the exchange).
maker_feedecimalNoFees charged for placing a market-making order on the book.
taker_feedecimalNoFees applied when liquidity is removed from the book.
can_withdrawbooleanNoIndicates if asset withdrawal is allowed.
can_depositbooleanNoIndicates if asset deposit is allowed.
ticker_idstringYesIdentifier of a ticker with delimiter to separate base/quote. This is null for assets without market e.g: USDT0
market_typestringYesName of market type (spot or perp) of asset. This is null for assets without a market e.g: USDT0