# Status ## Rate limits * 2400 requests/min or 40 requests/sec per IP address. (**weight = 1**) {% 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": "status" } ``` {% endtab %} {% tab title="REST (GET)" %} **GET** `[GATEWAY_REST_ENDPOINT]/query?type=status` {% endtab %} {% tab title="REST (POST)" %} `POST [GATEWAY_REST_ENDPOINT]/query` **Body** ```json { "type": "status" } ``` {% endtab %} {% endtabs %} ## Response ```json { "status": "success", "data": "active", "request_type": "query_status", } ``` {% hint style="info" %} The offchain sequencer could be in any of the following statuses: * `active`: accepting incoming executes. * `failed`: sequencer is in a failed state. {% endhint %}