# Carbon & Cashmere DEX Pools – SOL Chain

> Carbon & Cashmere DEX Pools – SOL Chain 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 SOL-paired tokens on Solana, including price, liquidity, and trust flags across DEXes like Orca.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/dex-pools/SOL
- 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-sol-chain-46e3e4c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9R4JVRNrfyJvmEny96adX

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-sol-chain-46e3e4c2
```

Example prompt: Pull the current DEX pool data for SOL on Solana — I want to see the top pools by liquidity, their USD prices, and whether they're trusted, from Carbon & Cashmere's DEX pool feed.

## When to prefer this

Use this endpoint when you specifically need Solana DEX pool data for SOL, including per-pool liquidity, pricing, and trust signals from on-chain sources. Prefer this over generic price APIs when you need DEX-level granularity, pair addresses, or liquidity depth on Solana. For multi-chain or multi-coin bundle queries, consider the sibling bundle endpoint instead.

## Known failure modes

- No pools found for the requested coin — returns empty pools array with zero stats
- Invalid coin symbol returns 404 or empty result
- Payment not provided or insufficient — x402 payment required error
- Rate limit exceeded — HTTP 429
- DexScreener upstream unavailable — 503 or stale data

## How this service works

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

## Output

A JSON object containing the queried coin (SOL), an array of DEX pool entries (each with DEX name, chain, USD price, base/quote token symbols and addresses, pair address, liquidity in USD, and trust flags), plus aggregate stats (total pools returned, trusted pool counts) and the active filter settings (chain, min liquidity).

## 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-sol-chain-46e3e4c2/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)
