# HALOWERK defiwerk Bridge Quote

> HALOWERK defiwerk Bridge Quote is a paid API for AI agents from defi.netzhandwerker.de, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Returns a cross-chain token bridge quote including estimated output amount, fees, and route details for moving tokens between EVM chains.

## Facts

- Endpoint: POST https://defi.netzhandwerker.de/bridge/quote
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-defiwerk-bridge-quote-cc4c6ad1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B_OouhPfKDy1x6HDJTrAn

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 halowerk-defiwerk-bridge-quote-cc4c6ad1 -d '<json body>'
```

Example prompt: Get me a bridge quote to move 500 USDC (contract 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) from Ethereum to Base — how much will I receive and what are the fees?

## When to prefer this

Use this endpoint when you need a real-time, paid cross-chain bridge quote between EVM-compatible chains and want per-call micropayment pricing via x402/USDC rather than API-key subscriptions. Prefer it for agents operating autonomously on Base Mainnet that need bridge cost estimation before executing a transfer.

## Known failure modes

- Unsupported chain pair returns an error indicating no route available
- Invalid token contract address (not 0x + 40 hex chars) returns a validation error
- Amount of zero or negative value may return an error or empty quote
- Token not supported on destination chain returns no-route error
- Network congestion or bridge provider downtime may cause timeout or empty response
- Missing required fields (token, amount, to_chain, from_chain) returns a 400-level error

## How this service works

HALOWERK defiwerk — bezahlte Endpunkte nach x402. Preise in USDC auf Base Mainnet.

## Output

Returns a bridge quote object containing the estimated output token amount on the destination chain, applicable bridge fees, the bridge protocol or route selected, exchange rate, and any slippage estimates. Used to evaluate cost and feasibility before executing an actual cross-chain transfer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "type": "string",
   "description": "Token contract address on the SOURCE chain, 0x followed by 40 hex characters."
  },
  "amount": {
   "type": "string",
   "description": "Amount in the smallest unit of the token, as a decimal string."
  },
  "to_chain": {
   "type": "string",
   "description": "Destination chain."
  },
  "to_token": {
   "type": "string",
   "description": "Optional token address on the destination chain. Defaults to the same asset."
  },
  "from_chain": {
   "type": "string",
   "description": "Source chain, for example base or ethereum."
  },
  "from_address": {
   "type": "string",
   "description": "Optional sender address used for the quote. A neutral address is used when omitted."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-defiwerk-bridge-quote-cc4c6ad1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi.netzhandwerker.de](https://www.zero.xyz/host/defi.netzhandwerker.de/llms.txt)
