# Liquid Logic Agent Wallet Audit

> Liquid Logic Agent Wallet Audit is a paid API for AI agents from audit.liquidlogicx.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a structured USDC spend summary for an agent wallet address from the public blockchain ledger

## Facts

- Endpoint: GET https://audit.liquidlogicx.com/api/audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/liquid-logic-agent-wallet-audit-0ccc68d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rR4p3N0u5z1uwL3UOahlb

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 liquid-logic-agent-wallet-audit-0ccc68d0
```

Example prompt: Pull a USDC spend audit for my agent wallet 0xAbC1234567890dEf1234567890abcdef12345678 and give me a structured summary of what it's spent.

## When to prefer this

Use this endpoint when you need a quick, structured USDC spend audit for a specific agent wallet address from the public ledger, especially within agent-finance or autonomous agent monitoring workflows. It is purpose-built for agent wallets and returns a pre-structured summary rather than raw transaction data, making it ideal for programmatic consumption by other agents or dashboards.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet address with no on-chain USDC activity may return an empty or minimal summary
- Network or ledger indexing delays may cause stale data
- Missing required 'wallet' query parameter returns a validation error
- Payment failure (x402) if USDC balance is insufficient to cover the $0.05 fee

## How this service works

Liquid Logic Agent — wallet audit. Returns a structured USDC spend summary for an agent wallet from the public ledger. Site: https://liquidlogicx.com

## Output

A structured USDC spend summary derived from the public blockchain ledger for the given wallet address, likely including total amounts spent, transaction counts, and a categorized breakdown of on-chain USDC outflows attributable to the agent wallet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "wallet": {
       "type": "string",
       "description": "Agent wallet address (0x…)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/liquid-logic-agent-wallet-audit-0ccc68d0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from audit.liquidlogicx.com](https://www.zero.xyz/host/audit.liquidlogicx.com/llms.txt)
