# Cross-Fork Lending Venue Stress Dashboard

> Cross-Fork Lending Venue Stress Dashboard is a paid API for AI agents from trade-production-180b.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns per-venue and per-chain stress metrics including positions at risk, total debt at risk, liquidatable position count, and tightest health factor aggregated across all monitored lending venues.

## Facts

- Endpoint: GET https://trade-production-180b.up.railway.app/venues
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cross-fork-lending-venue-stress-dashboard-22da3920
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qV4I5LbEPygIVzl6qbtGf

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 cross-fork-lending-venue-stress-dashboard-22da3920
```

Example prompt: Give me a cross-venue stress summary across all chains — show me how many positions are at risk, total debt at risk, number liquidatable right now, and the tightest health factor per lending venue.

## When to prefer this

Use this endpoint when you need a bird's-eye view of liquidation stress aggregated across ALL venues and chains simultaneously, rather than drilling into a single venue, chain, or individual position. It is the right choice for dashboards, alerting systems, or triage workflows that need to rank venues by risk exposure in one call.

## Known failure modes

- Fleet radar data unavailable — returns empty or stale venue list
- Payment not processed (x402 payment required) — returns 402 error
- No at-risk positions found — returns zeroed-out metrics per venue
- Specific chain or venue unreachable — partial data returned with missing entries
- Timeout if fleet aggregation across many chains takes too long

## How this service works

Cross-fork lending-venue stress: per venue/chain, positions at risk, total debt at risk, count liquidatable now, tightest health factor.

## Output

A structured list of lending venues/chains with: count of positions at risk, total debt at risk (in USD or base token), count of currently liquidatable positions (health factor ≤ 1), and the minimum (tightest) health factor observed — aggregated live from the fleet's multi-venue radar.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cross-fork-lending-venue-stress-dashboard-22da3920/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trade-production-180b.up.railway.app](https://www.zero.xyz/host/trade-production-180b.up.railway.app/llms.txt)
