Get Daily New Account Count
1. Overview & Typical Use
Returns the number of new accounts created each day, sorted in ascending chronological order.
- Typical use: analyze TRON network user growth trends, display new account curves.
- When not to use: to view active account counts use “Get Active Account Statistics”.
2. Endpoint & Authentication
GET /api/overview/dailyaccounts
For Base URL and authentication, see Common Network & Authentication.
3. Request
Fields
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
days | integer | No | 15 | Time range in days, max 2000 |
4. Response
Fields
Top-level
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
success | boolean | Required | Whether the request succeeded | — |
data | array | Required | Daily new account list (see below) | — |
data[] element
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
date | integer | Required | Statistics date | millisecond timestamp |
dateDayStr | string | Required | Statistics date string | yyyy-MM-dd |
newAddressSeen | integer | Required | New addresses on this day | — |
totalAddress | integer | Required | Cumulative address count as of this day | — |
5. Errors
For HTTP status codes, see Common Errors. Key points for this endpoint:
- Empty result is not an error: returns
200+data: []when no data matches.
Last updated on: