Skip to main content
GET
/
actions
Get Wallet Actions
curl --request GET \
  --url https://api.fuse.io/api/v2/smart-wallets/actions \
  --header 'Authorization: Bearer <token>'
{
  "docs": [
    {
      "_id": "<string>",
      "walletAddress": "<string>",
      "name": "<string>",
      "status": "<string>",
      "received": [
        {
          "name": "<string>",
          "symbol": "<string>",
          "address": "<string>",
          "decimals": 123,
          "value": "<string>",
          "type": "<string>",
          "_id": "<string>",
          "to": "<string>"
        }
      ],
      "sent": [
        {
          "name": "<string>",
          "symbol": "<string>",
          "address": "<string>",
          "decimals": 123,
          "value": "<string>",
          "type": "<string>",
          "_id": "<string>",
          "to": "<string>"
        }
      ],
      "userOpHash": "<string>",
      "txHash": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.fuse.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

apiKey
string
required

Your Public API key.

page
integer
default:1

Page number for pagination.

limit
integer
default:10

Number of items per page.

tokenAddress
string

Filter actions by token address.

Response

Successful response

docs
object[]