GET
/
api
/
v1
/
account
/
transactions
Get Account Transactions
curl --request GET \
  --url https://prv.explorer.biya.io/api/v1/account/transactions
{
  "code": 123,
  "message": "<string>",
  "data": {}
}

Query Parameters

address
string
pagination.page
integer<int32>

页码,从1开始,默认1(基于页数的分页)

pagination.page_size
integer<int32>

每页大小,默认20,最大100

pagination.cursor
string

游标(基于游标的分页,用于大数据集优化,优先级高于 page) 对于区块:使用区块高度(height) 对于交易:使用交易号(tx_number)或区块高度+交易号的组合

tx_types
string[]

Optional: filter by message types from transaction messages (e.g., ["/cosmos.bank.v1beta1.MsgSend", "/injective.exchange.v1beta1.MsgDeposit", "MsgWithdraw"]) Supports both full type URL (e.g., "/cosmos.bank.v1beta1.MsgSend") and short type name (e.g., "MsgSend") If empty, returns all transactions regardless of message types Note: A transaction matches if ANY of its messages matches ANY of the specified types

Response

200 - application/json

OK

通用响应结构

code
integer<int32>

响应状态码,0表示成功,非0表示失败

message
string

响应消息

data
object

响应数据(使用 Struct 类型,可以直接返回 JSON 对象,更直观)