# SignalHarness Wallet Asset Flows

> SignalHarness Wallet Asset Flows is a paid API for AI agents from signalharness.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Analyzes and traces asset flows associated with a given wallet, returning structured findings about token movements and activity patterns.

## Facts

- Endpoint: POST https://signalharness.ai/api/agent/services/wallet_asset_flows/invoke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalharness-wallet-asset-flows-9915ff48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y95yTjcr8CYOMyOSN1lk6

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 signalharness-wallet-asset-flows-9915ff48 -d '<json body>'
```

Example prompt: Can you analyze the asset flows for wallet 0xAbC123...def456 on Base — I want to understand where funds are coming from and going to, and flag anything unusual.

## When to prefer this

Choose this endpoint when you need structured, agent-native analysis of wallet asset flows on Base (eip155:8453) with built-in payment via x402 and cryptographically verifiable receipts. Prefer it over generic blockchain explorers when you need a single API call that combines analysis, receipting, and warning flags in one response, especially in autonomous agent workflows that require auditability.

## Known failure modes

- Malformed or empty wallet_asset_flow_request string returns a validation error
- Wallet address not found or no on-chain data available may return empty flows with warnings
- Payment failure (insufficient USDC balance or x402 protocol error) blocks execution
- Ambiguous or overly broad query may return results with warnings about evidence scope limitations
- Network congestion on Base may increase latency or cause timeout

## How this service works

Explore 330 pay-per-call x402 API services and 27 agent-native digital products, with Base USDC pricing, secure Polar checkout, and free discovery.

## Output

Returns a JSON object containing: a 'wallet_asset_flows' field with the analysis result, a list of any warnings encountered, the evidence scope indicating how data was sourced (e.g. caller-supplied data), a status field ('succeeded' or otherwise), and a full receipt including payment ID, network (Base/eip155:8453), latency, execution ID, and a SHA-256 hash of the result for verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "wallet_asset_flow_request": {
   "type": "string",
   "maxLength": 65536,
   "minLength": 2
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "replay": false,
  "result": {
   "warnings": [
    "Results cover only supplied records."
   ],
   "service_id": "wallet_asset_flows",
   "evidence_scope": "caller_supplied_data",
   "wallet_asset_flows": "{\"assets\":{\"USDC\":{\"inbound_atomic\":\"10\",\"net_atomic\":\"7\",\"outbound_atomic\":\"3\"}}}"
  },
  "status": "succeeded",
  "receipt": {
   "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
   "usage": [],
   "status": "succeeded",
   "network": "eip155:8453",
   "artifacts": [],
   "endedAtMs": 0,
   "latencyMs": 0,
   "paymentId": "example-payment",
   "receiptId": "example-receipt",
   "requestId": "example-request",
   "serviceId": "wallet_asset_flows",
   "executionId": "example-execution",
   "startedAtMs": 0,
   "amountAtomic": "10000",
   "resultSha256": "254556f50be29bcebf67a9cadf07e3b0997e2083c6fd4971b60f4be0d8186609",
   "serviceVersion": "1.0.0",
   "settlementReference": "0x0000000000000000000000000000000000000000000000000000000000000000"
  },
  "artifacts": [],
  "requestId": "example-request",
  "executionId": "example-execution"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalharness-wallet-asset-flows-9915ff48/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalharness.ai](https://www.zero.xyz/host/signalharness.ai/llms.txt)
