# Vibe Springs Agent Wallet Status & Readiness Checker

> Vibe Springs Agent Wallet Status & Readiness Checker is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Checks an Ethereum wallet address and returns USDC/ETH balances, transaction count, wallet type classification, and personalized service recommendations for AI agents.

## Facts

- Endpoint: GET https://vibesprings.net/api/agent/status
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-springs-agent-wallet-status-readiness-checker-8d55118c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yOSw6KB6ZYOI0X4J6-G4F

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 vibe-springs-agent-wallet-status-readiness-checker-8d55118c
```

Example prompt: Can you check the wallet status for 0x1234567890abcdef1234567890abcdef12345678 — I want to know its USDC and ETH balances, how many transactions it has, whether it's classified as a whale, agent, or micro_agent, and what services are recommended for it?

## When to prefer this

Use this endpoint when an AI agent needs to assess the readiness, funding level, or classification of an Ethereum wallet before calling paid x402 services, or when you need a quick summary of a wallet's on-chain activity and balance without querying a raw RPC node directly.

## Known failure modes

- Invalid or malformed Ethereum wallet address returns a 400 error
- Wallet address not found on-chain returns zero balances
- Network/RPC issues may cause delayed or failed lookups
- Payment failure (insufficient USDC for the $0.005 call) returns 402
- Rate limiting may cause 429 errors under high query volume

## How this service works

Agent wallet status and readiness checker. Input any wallet address to get USDC/ETH balances, transaction count, wallet type classification (whale/agent/micro_agent), and personalized service recommendations.

## Output

Returns the wallet's USDC and ETH balances, total transaction count, a wallet type classification (whale/agent/micro_agent), and a list of personalized service recommendations based on the wallet's profile.

## 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": "Ethereum wallet address to check"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "wallet": "0x38c063312719220c676e988f0dee14b4ec0e44c8",
  "network": "base",
  "balances": {
   "eth": "0.012345",
   "usdc": "5.2340"
  },
  "checked_at": "2026-06-26T20:00:00.000Z",
  "wallet_type": "agent",
  "wallet_funded": true,
  "processingTime": "250ms",
  "transaction_count": 142,
  "recommended_services": [
   {
    "price": "$0.002",
    "reason": "Multi-asset price data",
    "endpoint": "/api/market-data"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-agent-wallet-status-readiness-checker-8d55118c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
