Skip to main content
GET
/
indexer
/
tx
/
v1
/
txs
/
by_account
/
{account}
Get transactions by account
curl --request GET \
  --url https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/txs/by_account/{account}
{
  "txs": [
    {
      "txhash": "<string>",
      "height": "<string>",
      "codespace": "<string>",
      "code": 123,
      "data": "<string>",
      "raw_log": "<string>",
      "logs": [
        {}
      ],
      "info": "<string>",
      "gas_wanted": "<string>",
      "gas_used": "<string>",
      "tx": {},
      "timestamp": "<string>",
      "events": [
        {}
      ]
    }
  ],
  "pagination": {
    "previous_key": "<string>",
    "next_key": "<string>",
    "total": "<string>"
  }
}

Path Parameters

account
string
required

The account address.

Query Parameters

is_signer
boolean
default:false

When true, only returns transactions where the account was the signer. Defaults to false.

msgs
string

Message types to filter by (comma-separated). Example: cosmos.bank.v1beta1.MsgSend.

pagination.key
string

Cursor key for pagination.

pagination.offset
integer

Number of records to skip.

pagination.limit
integer
default:100

Maximum number of records to return. Defaults to 100.

pagination.count_total
boolean
default:true

Whether to return the total count. Defaults to true.

pagination.reverse
boolean
default:true

When true, returns results in descending order. Defaults to true.

Response

200 - application/json

Successful response

txs
object[]
pagination
object

Pagination metadata for list responses.