# Carbon & Cashmere DEX Pools for ETH

> Carbon & Cashmere DEX Pools for ETH is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.05/call, status down (last checked 2026-09-14).

Returns real-time DEX pool snapshots for ETH across all chains, ranked by liquidity, with price, pair addresses, and trust signals.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/dex-pools/ETH
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-dex-pools-for-eth-6dd62526
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NeyGJ0_NGN3CydF1RVUQY

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 carbon-cashmere-dex-pools-for-eth-6dd62526
```

Example prompt: Pull the latest DEX pool data for ETH — show me the top pools by liquidity across all chains, including prices and whether the pools are trusted.

## When to prefer this

Use this endpoint when you need real-time on-chain DEX pool data specifically for ETH, including cross-chain liquidity aggregation, pair addresses, and trust classification. Prefer this over generic price feeds when you need pool-level granularity (liquidity depth, pair addresses, DEX identity) rather than just a spot price. Use sibling endpoints for ML signals, trend analytics, or multi-oracle price consensus.

## Known failure modes

- Unknown or unsupported coin symbol returns empty pool list or 404
- No pools meeting minimum liquidity threshold returns empty pools array with stats showing 0
- DexScreener upstream outage may cause stale or missing data
- Malformed coin path parameter may return 400 error
- Payment failure (x402) blocks access if USDC balance is insufficient

## How this service works

Professional crypto market intelligence. Real-time prices, signals, and market scoring.

## Output

A JSON object with a list of DEX pools for ETH, each containing the DEX name, chain, USD price, base and quote token addresses and symbols, pair address, liquidity in USD, and trust flags (trusted_chain, trusted_quote). Also includes aggregate stats: total pools returned, trusted pool counts, and the active liquidity filter.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coin": "BTC",
  "pools": [
   {
    "dex": "orca",
    "chain": "solana",
    "price_usd": 67524.36,
    "base_token": {
     "symbol": "BTC",
     "address": "WRAPPED_OR_MEMECOIN_ADDRESS"
    },
    "quote_token": {
     "symbol": "SOL",
     "address": "So11..."
    },
    "pair_address": "EXAMPLE_SPL_PAIR",
    "liquidity_usd": 1645862,
    "trusted_chain": false,
    "trusted_quote": false
   }
  ],
  "stats": {
   "trusted_pools": 0,
   "pools_returned": 3,
   "trusted_chain_pools": 0,
   "trusted_quote_pools": 0
  },
  "filter": {
   "chain": null,
   "min_liquidity_usd": 10000
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-dex-pools-for-eth-6dd62526/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.carbon-cashmere.de](https://www.zero.xyz/host/api.carbon-cashmere.de/llms.txt)
