Skip to main content

Wallet Transactions

Query a wallet’s Layer-2 activity: list all coin transfers, fetch a specific transaction by hash, and view token-transfer history.

tip

Use the special wallet address me to refer to the authenticated user’s wallet without hard-coding an address.

List L2 transactions

GET /api/v1/wallets/{walletAddress}}/transactions

cURL

curl -s "$FREEQ_API_URL/api/v1/wallets/me/transactions" \
-H "Authorization: Bearer $FREEQ_API_TOKEN"

Get L2 transaction

GET /api/v1/wallets/{walletAddress}/transactions/{transactionHash}

cURL

curl -s "$FREEQ_API_URL/api/v1/wallets/me/transactions/0xHASH" \
-H "Authorization: Bearer $FREEQ_API_TOKEN"

List L2 token transfers

GET /api/v1/wallets/{walletAddress}/token-transfers

cURL

curl -s "$FREEQ_API_URL/api/v1/wallets/me/token-transfers" \
-H "Authorization: Bearer $FREEQ_API_TOKEN"