# VIBE DeFi Quote — Deposit/Withdraw/Borrow/Repay Pricing

> VIBE DeFi Quote — Deposit/Withdraw/Borrow/Repay Pricing is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Returns a DeFi action quote (deposit, withdraw, borrow, or repay) for a specified protocol and amount on a given network, paid per-call via USDC on Base.

## Facts

- Endpoint: POST https://api.vibe.airforce/api/x402/vibe-tools/defi/quote
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-defi-quote-deposit-withdraw-borrow-repay-pricing-cddd31f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vg2KlJkL2EeUGeI9hAPf3

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-defi-quote-deposit-withdraw-borrow-repay-pricing-cddd31f4 -d '<json body>'
```

Example prompt: Get me a deposit quote for 500 USDC on Aave-v3 on the Ethereum network — I want to see the current rate before I commit.

## When to prefer this

Use this endpoint when you need a real-time DeFi action quote (deposit, withdraw, borrow, or repay) from a named protocol without setting up API keys or accounts — ideal for AI agents that pay per-call in USDC on Base and need quick protocol pricing data.

## Known failure modes

- Unsupported protocol name returns an error or empty response
- Invalid action type (not deposit/withdraw/borrow/repay) causes a validation failure
- Network not supported for the given protocol returns an error
- Malformed amount string causes a parse error
- Payment failure via x402/USDC prevents the call from completing

## How this service works

Top Picks: AI-verified smart money tokens every 30 min. 6-dimension scores, one-sentence thesis, smart money flow data. Plus 50+ crypto-data endpoints via x402 USDC on Base. No API keys, no accounts.

## Output

A DeFi action quote for the requested operation (deposit, withdraw, borrow, or repay) on the specified protocol and network, including rate and amount details relevant to executing that action.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "action",
  "amount",
  "protocol"
 ],
 "properties": {
  "action": {
   "type": "string",
   "description": "Action: deposit, withdraw, borrow, repay"
  },
  "amount": {
   "type": "string",
   "description": "Amount in human-readable units"
  },
  "network": {
   "type": "string",
   "description": "Network for DeFi quote"
  },
  "protocol": {
   "type": "string",
   "description": "Protocol name (e.g., 'marinade', 'aave-v3')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-defi-quote-deposit-withdraw-borrow-repay-pricing-cddd31f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vibe.airforce](https://www.zero.xyz/host/api.vibe.airforce/llms.txt)
