Get actions statistics

Retrieve comprehensive statistics about blockchain actions and their execution patterns. This endpoint provides aggregate data including total action counts, execution trends, action type distribution, and wallet activity analytics over specified time ranges.

GET

Parameters

Query Parameters

Time_range
Time range for filtering statistics and analytics data
When_created[$gt]
When_created[$lt]
When_created[$gte]
When_created[$lte]
Action_name
Filter statistics by action name
Signer
Filter statistics by signer account name
Status codeDescription
200Action statistics
400Bad request error - the request contains invalid parameters or malformed data
500Internal server error - an unexpected error occurred on the server
cURL
curl -L \
"https://blockv-labs.io/stats/actions?time_range={time_range}&when_created[$gt]={when_created[$gt]}&when_created[$lt]={when_created[$lt]}&when_created[$gte]={when_created[$gte]}&when_created[$lte]={when_created[$lte]}&action_name={action_name}&signer={signer}" \
-H 'Accept: application/json'
Response
{
"total": 1
}
json
{
"type": "object",
"required": [
"total"
],
"properties": {
"total": {
"type": "integer",
"format": "int64",
"description": "Total number of action calls"
}
}
}