# AgenticFi DeFi Positions by Wallet Address

> AgenticFi DeFi Positions by Wallet Address is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns all active DeFi positions held by a given wallet address on a specified chain

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/wallet/defi-positions/%7Baddress%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-defi-positions-by-wallet-address-62bade24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rpSakncriSUM5Nq51-gYA

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 agenticfi-defi-positions-by-wallet-address-62bade24
```

Example prompt: What DeFi positions does wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e currently hold on Base — show me all the protocols and amounts they're in.

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of all DeFi positions for a specific wallet address on Base, Ethereum, Arbitrum, or other supported chains. Prefer it over general token balance endpoints when you specifically need protocol-level positions like LP shares, staked tokens, or lending collateral rather than raw token holdings.

## Known failure modes

- Invalid or malformed wallet address returns a 400 or validation error
- Wallet address has no DeFi positions — returns empty array or 404
- Unsupported chain key returns error or no results
- Payment failure (x402) if USDC balance or payment authorization is insufficient
- Rate limiting or service unavailability returns 5xx

## How this service works

DeFi APIs for AI agents. 36 pay-per-call endpoints for token data, pricing, wallet analytics, swap routing, and on-chain workflows. Powered by x402 on Base.

## Output

A structured list of active DeFi positions associated with the queried wallet address, including protocol names, position types (e.g. liquidity, staking, lending), asset amounts, and chain context.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "title": "chain (optional)",
       "description": "Optional. Chain key Examples: base, ethereum, arbitrum"
      },
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-defi-positions-by-wallet-address-62bade24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
