HTTP endpoints
Get account nonce
Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| account | yes | string (hex) | Account address (required) |
Response fields
| Parameter | Required | Type | Description |
|---|---|---|---|
nonce | yes | integer (int64) | The current transaction nonce for the account (0 for new accounts) |
Response example
A sample 200 JSON body is attached to this operation as an OpenAPI example (Mintlify shows it in the example panel, similar to other exchange API docs).
GET
Get account nonce
Path Parameters
Account address (required) An Ethereum-style account address (20 bytes).
Response
200 - application/json
Account transaction nonce for replay protection
The current transaction nonce for the account (0 for new accounts)
Required range:
x >= 0Previous
Get bridge events### Parameters
| Parameter | Required | Type | Description |
| --------- | -------- | ---- | ----------- |
| account | yes | string (hex) | Ethereum-style account address for the sub-account context. |
| roundFrom | yes | string | null | — |
| roundTo | yes | string | null | — |
| paginationData | yes | object | Pagination segment containing `pageNumber` and `pageSize` (serialized per gateway contract). |
### Response fields
| Parameter | Required | Type | Description |
| --------- | -------- | ---- | ----------- |
| `events` | yes | object[] | — |
| `events[].accountAddress` | yes | string (hex) | An Ethereum-style account address (20 bytes). |
| `events[].amount` | yes | string | — |
| `events[].eventType` | yes | string | — |
| `events[].externalAddress` | yes | string | — |
| `events[].externalTokenAddress` | yes | string | — |
| `events[].id` | yes | integer (int64) | — |
| `events[].round` | yes | integer (int64) | — |
| `events[].timestamp` | yes | integer (int64) | — |
### Response example
A sample **`200`** JSON body is attached to this operation as an OpenAPI **example** (Mintlify shows it in the example panel, similar to other exchange API docs).
Next
Get account nonce