# Allium Wallet Transaction History

> Allium Wallet Transaction History is a paid API for AI agents from agents.allium.so, paid per call via MPP or x402, $0.03/call, status unknown (last checked 2026-09-13).

Retrieves the full onchain transaction history for a given wallet address

## Facts

- Endpoint: POST https://agents.allium.so/api/v1/developer/wallet/transactions
- Price: $0.03/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allium-d1a4f26e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g_BIyZLyIO9pXhgb45S62

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability allium-d1a4f26e -d '<json body>'
```

Example prompt: Pull the full onchain transaction history for wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e on Ethereum so I can review everything it's done.

## When to prefer this

Use this endpoint when you need the complete chronological transaction history of a specific wallet address, including token transfers, swaps, and contract interactions. Prefer this over the Balances or PnL endpoints when you need raw event-level data rather than aggregated summaries. Ideal for auditing wallet activity, building transaction timelines, or feeding downstream analytics.

## Known failure modes

- Invalid or malformed wallet address returns a 400 error
- Unsupported blockchain network returns an error or empty result
- Rate limiting or quota exceeded returns a 429 or payment-required response
- Network congestion or indexing lag may result in incomplete recent transactions
- Very active wallets with thousands of transactions may require pagination

## How this service works

Get wallet transaction history

## Output

A list of onchain transactions associated with the specified wallet address, including transaction hashes, timestamps, token transfers, contract interactions, gas costs, and counterparty addresses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "chain",
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network (e.g. ethereum, solana, base)"
      },
      "address": {
       "type": "string",
       "description": "Wallet address"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "id": "ethereum:0xabc123:0",
    "fee": {
     "amount": 0.000021,
     "raw_amount": "21000000000000"
    },
    "hash": "0xabc123def456...",
    "type": 2,
    "chain": "ethereum",
    "index": 0,
    "labels": [
     "transfer"
    ],
    "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "activities": [],
    "to_address": "0x1234567890abcdef1234567890abcdef12345678",
    "block_number": 20000000,
    "from_address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "asset_transfers": [],
    "block_timestamp": "2025-06-17T12:00:00Z"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/allium-d1a4f26e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.allium.so](https://www.zero.xyz/host/agents.allium.so/llms.txt)
