# Nonces ## 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="Websocket" %} **Connect** `WEBSOCKET [GATEWAY_WEBSOCKET_ENDPOINT]` **Message** ```json { "type": "nonces", "address": "0x0000000000000000000000000000000000000000" } ``` {% endtab %} {% tab title="REST (GET)" %} **GGET** `[GATEWAY_REST_ENDPOINT]/query?type=nonces&address={address}` {% endtab %} {% tab title="REST (POST)" %} `POST [GATEWAY_REST_ENDPOINT]/query` **Body** ```json { "type": "nonces", "address": "0x0000000000000000000000000000000000000000" } ``` {% endtab %} {% endtabs %} ## Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| address | string | Yes | A bytes20 sent as a hex string representing the wallet address. |