---
title: "Get nonce state"
method: GET
path: "/v1/nonce-state/{account}"
tags: ["Authentication"]
---

# Get nonce state

`GET /v1/nonce-state/{account}`

Returns the current nonce anchor and next free bitmap index for an account. Used by bots to resume nonce state after restart.

## Path parameters

- `account` string, required

## Response `200`

A successful response.

- ApiGetNonceStateResponse — Response containing current nonce anchor and bitmap index. When current_bitmap_index == 208, all slots in this anchor are used — advance to nonce_anchor+1 with bitmap_index=0.
  - `nonce_anchor` string, uint64 — Current nonce anchor epoch
  - `current_bitmap_index` integer — Current bitmap index (0-207), or 208 if anchor is full
  - `bitmap` string — Full nonce bitmap as 0x-prefixed hex (uint256). bit=1 consumed, bit=0 available.

## Other responses

- `default` — An unexpected error response.

---

[API](https://skmtc.net/rise/apis/risex-rest-api.md) · [All operations](https://skmtc.net/rise/apis/risex-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rise/risex-rest-api/revisions/194af8339c0d/schema)
