Skip to main content
POST
/
api
/
zerion
/
wallets
/
transactions
/zerion/wallets/transactions
curl --request POST \
  --url https://api.anysite.io/api/zerion/wallets/transactions \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "count": 2,
  "timeout": 300,
  "currency": "usd",
  "operation_types": [],
  "chains": [],
  "include_spam": false
}
'
[
  {
    "id": "<string>",
    "@type": "ZerionAction",
    "mined_at": 123,
    "type": "<string>",
    "type_label": "<string>",
    "status": "<string>",
    "hash": "<string>",
    "explorer_url": "<string>",
    "fee": 123,
    "counterparty_name": "<string>",
    "counterparty_address": "<string>",
    "chain": {
      "id": "<string>",
      "@type": "ZerionChainRef",
      "name": "<string>",
      "image": "<string>",
      "is_testnet": true
    },
    "transfers": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
address
string
required

Wallet address: an EVM 0x address or an ENS / identity name

Examples:

"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"

"vitalik.eth"

count
integer
required

Max number of transactions to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
currency
enum<string>
default:usd

Currency to denominate transaction values in

Available options:
usd,
eur,
gbp,
jpy,
aud,
cad,
chf,
cny,
inr,
krw,
rub,
brl,
try,
btc,
eth
operation_types
enum<string>[] | null

Filter transactions to these operation types

Available options:
approve,
burn,
claim,
deploy,
deposit,
execute,
mint,
receive,
revoke,
revoke_delegation,
send,
trade,
withdraw
chains
enum<string>[] | null

Filter transactions to these blockchain networks

Available options:
ethereum,
tron,
binance-smart-chain,
base,
arbitrum,
plasma,
ink,
avalanche,
polygon,
monad,
optimism,
mantle,
katana,
berachain,
xdai,
megaeth,
sei,
okbchain,
linea,
fraxtal,
blast,
unichain,
sonic,
celo,
zksync-era,
scroll,
abstract,
ronin,
bob,
xinfin-xdc,
soneium,
fantom,
cronos-zkevm,
manta-pacific,
aurora,
taiko,
metis-andromeda,
ape,
mode,
opbnb,
somnia,
lisk,
tomochain,
polynomial,
polygon-zkevm,
0g,
lens,
gravity-alpha,
zora,
swellchain,
redstone,
astar-zkevm,
rari,
degen,
cyber,
hyperevm,
solana,
tempo,
wonder,
world,
zero,
zkcandy,
zklink-nova,
re-al
include_spam
boolean
default:false

Include spam / low-value transactions

Response

Successful Response

id
string
required
@type
string
default:ZerionAction
mined_at
integer | null
type
string | null
type_label
string | null
status
string | null
hash
string | null
explorer_url
string | null
fee
number | null
counterparty_name
string | null
counterparty_address
string | null
chain
object
transfers
object[]