Ultron.
Tool reference / Ultron

get_wallet_activity

Read timestamped Alchemy native/ERC-20 transfers using the user’s encrypted key and approved daily request budget. No other-chain substitution.

Updated September 8, 2026 · Independent beta

Wallet activity history

Read timestamped Alchemy native/ERC-20 transfers using the user’s encrypted key and approved daily request budget. No other-chain substitution.

Permission and calling convention

Required scope: chain:read. This tool reads data or account-owned state.

This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.

POST /api/tools/get_wallet_activity
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/json

Input schema

Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "wallet": {
      "type": "string",
      "minLength": 1,
      "maxLength": 80
    },
    "hours": {
      "default": 6,
      "type": "number",
      "minimum": 0.05,
      "maximum": 168
    },
    "to": {
      "type": "string",
      "format": "date-time",
      "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?(?:Z))$"
    },
    "maxPages": {
      "default": 1,
      "type": "integer",
      "minimum": 1,
      "maximum": 3
    },
    "cursor": {
      "type": "object",
      "properties": {
        "incoming": {
          "type": "string",
          "maxLength": 200
        },
        "outgoing": {
          "type": "string",
          "maxLength": 200
        }
      },
      "additionalProperties": false
    }
  },
  "required": [
    "wallet",
    "hours",
    "maxPages"
  ],
  "additionalProperties": false
}

Need a concrete starting point?

Build something →Track something →