Retrieve daily network Solana transaction analytics, including total, vote, and non-vote transaction breakdowns over a given time range.
QUERY PARAMS
filter
string
Metric to filter the returned series by. Use 'all' to return a full breakdown (total, vote, nonvote_success, nonvote_fail) for each day, or select one of the other values to return just that single metric as 'value' for each day.
range
number
Time range in days for the data to be returned, counting back from today. Will be overrided by from_time and to_time if provided.
from_time
number
Used when you want to filter data by time. Format time: YYYYMMDD. Pass together with to_time to filter by a start and end date. Example: ?from_time=20240701&to_time=20240715
to_time
number
Used when you want to filter data by time. Format time: YYYYMMDD. Pass together with from_time to filter by a start and end date. Example: ?from_time=20240701&to_time=20240715
RESPONSES
200
OK
Response Body
success
boolean
Status of Api
updated_time
number
Unix timestamp (in seconds) of when this response was generated
lag_days
number
Number of days by which the underlying data lags behind real time
filter
string
The filter value echoed back from the request
block_date
string
Date of the data point, formatted as YYYY-MM-DD
block_time
number
Unix timestamp (in seconds) of block_date
total
number
Total number of transactions on this date. Only present when filter=all
vote
number
Number of vote transactions on this date. Only present when filter=all
nonvote_success
number
Number of successful non-vote transactions on this date. Only present when filter=all
nonvote_fail
number
Number of failed non-vote transactions on this date. Only present when filter=all
value
number
Value for the selected metric. Only present when filter is total, vote, nonvote_success, or nonvote_fail
400
Bad Request
Response Body
429
Too Many Requests
Response Body
500
Internal Server Error
Response Body