# Max NLP Mintable ## Rate limits * 120 requests/min or 20 requests every 10 seconds per IP address. (**weight = 20**) {% hint style="info" %} See more details in [API Rate limits](https://docs.nado.xyz/developer-resources/api/rate-limits) {% endhint %} ## Request {% tabs %} {% tab title="Websocket" %} **Connect** `WEBSOCKET [GATEWAY_WEBSOCKET_ENDPOINT]` **Message** ```json { "type": "max_nlp_mintable", "sender": "0x7a5ec2748e9065794491a8d29dcf3f9edb8d7c43000000000000000000000000", "spot_leverage": "true" } ``` {% endtab %} {% tab title="REST (GET)" %} **GET** `[GATEWAY_REST_ENDPOINT]/query?type=max_nlp_mintable&sender={sender}` {% endtab %} {% tab title="REST (POST)" %} `POST [GATEWAY_REST_ENDPOINT]/query` **Body** ```json { "type": "max_nlp_mintable", "sender": "0x7a5ec2748e9065794491a8d29dcf3f9edb8d7c43000000000000000000000000", "spot_leverage": "true" } ``` {% endtab %} {% endtabs %} ## Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| sender | string | Yes | A bytes32 sent as a hex string; includes the address and the subaccount identifier. |
| spot_leverage | boolean | No | Boolean sent as a string. indicates whether leverage should be used; when set to false , returns the max amount of base LP mintable possible without borrow. Defaults to true |