# AgenticFi Bridge Quote

> AgenticFi Bridge Quote 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).

Get a cross-chain bridge quote for swapping tokens from one blockchain to another

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/bridge/quote
- 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-bridge-quote-4a205a66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e1dSxGEBSqLgvsAGA_3bm

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-bridge-quote-4a205a66
```

Example prompt: Get me a bridge quote to move 0.001 ETH (that's 1000000000000000 in wei) from Base (chain 8453) using token 0x4200000000000000000000000000000000000006 to USDC on Ethereum mainnet (chain 1, token 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) from my wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e.

## When to prefer this

Use this endpoint when an agent needs to estimate how many tokens a user will receive after bridging from one EVM chain to another before executing the actual transfer. Ideal for pre-flight checks, UI quote displays, or route comparison in multi-step cross-chain DeFi workflows.

## Known failure modes

- Invalid chain ID returns 400 error — chain must be a supported EVM chain ID such as 1, 8453, or 42161
- Invalid token address returns 400 — must be a valid EVM contract address
- fromAmount must be in smallest unit (wei/raw decimals); human-readable amounts will cause incorrect quotes or errors
- Unsupported token pair on the specified chain combination returns no routes found
- Sender address not a valid Ethereum address returns 400
- Network unavailability or bridge provider outage returns 503 or timeout

## 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

Returns a bridge quote including estimated output token amount, route details, fees, and bridge provider information for a cross-chain token transfer.

## 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": [
      "fromChain",
      "toChain",
      "fromToken",
      "toToken",
      "fromAmount",
      "fromAddress"
     ],
     "properties": {
      "toChain": {
       "type": "string",
       "title": "toChain (required)",
       "description": "Required. Destination chain ID Examples: 8453, 1, 42161"
      },
      "toToken": {
       "type": "string",
       "title": "toToken (required)",
       "description": "Required. Destination token address Examples: 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913"
      },
      "fromChain": {
       "type": "string",
       "title": "fromChain (required)",
       "description": "Required. Source chain ID Examples: 8453, 1, 42161"
      },
      "fromToken": {
       "type": "string",
       "title": "fromToken (required)",
       "description": "Required. Source token address Examples: 0x4200000000000000000000000000000000000006"
      },
      "fromAmount": {
       "type": "string",
       "title": "fromAmount (required)",
       "description": "Required. Amount in smallest unit Examples: 1000000000000000"
      },
      "fromAddress": {
       "type": "string",
       "title": "fromAddress (required)",
       "description": "Required. Sender wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-bridge-quote-4a205a66/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)
