Get Current TPS
1. Overview & Typical Use
Returns the latest block height, current transactions per second (TPS), and the all-time highest TPS.
- Typical use: homepage real-time TPS display, network performance monitoring dashboards.
- When not to use: for transaction trend data use “Get Transaction Trend Data”.
2. Endpoint & Authentication
GET /api/system/tps
For Base URL and authentication, see Common Network & Authentication.
3. Request
Fields
No parameters required.
4. Response
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Fixed value "tps" |
data | object | Required | TPS data; see below |
data object fields
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
blockHeight | integer | Required | Latest block height | — |
currentTps | integer | Required | Current transactions per second | tx/s |
maxTps | integer | Required | All-time highest transactions per second | tx/s |
5. Errors
For HTTP status codes, see Common Errors. Key points for this endpoint:
- No parameters — always returns data: this endpoint requires no parameters and always returns current TPS information.
Last updated on: