Get Contract Caller Count (with Min/Max)
1. Overview & Typical Use
Returns the contract caller count for a specified number of days, including the maximum and minimum values.
- Typical use: analyze trends in contract caller counts, view extreme values.
- When not to use: for contract trigger count trends use “Get Contract Trigger Data”.
2. Endpoint & Authentication
GET /api/calleraddressstatistic
For Base URL and authentication, see Common Network & Authentication.
3. Request
Fields
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
start_timestamp | integer | No | — | Start time, millisecond precision |
end_timestamp | integer | No | — | End time, millisecond precision |
limit | integer | No | 1000 | Number of records to return |
4. Response
Fields
Top-level
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
total | integer | Required | Number of data records | — |
max | object | Required | Data record with the maximum caller count | — |
min | object | Required | Data record with the minimum caller count | — |
data | array | Required | Daily caller data list; see below | — |
data[] elements
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
day | integer | Required | Statistics date | Millisecond timestamp |
caller_amount | integer | Required | Caller count for the day | — |
caller_amount_rate | number | Required | Day-over-day change rate for caller count | — |
5. Errors
For HTTP status codes, see Common Errors. Notes for this endpoint:
- Empty result is not an error: no matched records returns
200+data: [], which is a normal response.
Last updated on: