# Lighter DEX Markets - Order Books & Stats

> Lighter DEX Markets - Order Books & Stats is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Lists all available markets on the Lighter decentralized exchange, including order book data and market statistics

## Facts

- Endpoint: POST https://api.vibe.airforce/api/x402/vibe-tools/lighter/markets
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-vibe-airforce-469d5d98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rVJ6zEz68NZT2YCVCkfni

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 api-vibe-airforce-469d5d98 -d '<json body>'
```

Example prompt: Show me all the available markets and order books on Lighter DEX right now — I want to see what trading pairs are listed and their current stats.

## When to prefer this

Use this endpoint when you need to discover available trading pairs on the Lighter DEX, inspect current order book depth, or gather market statistics before executing a trade or analyzing DeFi liquidity. Prefer this over generic token screeners when you specifically need Lighter DEX market structure data.

## Known failure modes

- Payment failure or insufficient USDC balance ($0.005 required via x402 protocol)
- Empty response if Lighter DEX has no active markets
- Network timeout if Lighter API is unreachable
- Malformed response if Lighter backend is degraded

## How this service works

Top Picks: AI-verified smart money tokens every 30 min. 6-dimension scores, one-sentence thesis, smart money flow data. Plus 50+ crypto-data endpoints via x402 USDC on Base. No API keys, no accounts.

## Output

Returns a list of available markets on the Lighter DEX with associated order book data (bids, asks) and market statistics such as trading volume, price levels, and liquidity depth.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object",
     "properties": {
      "markets": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "Market listings with symbol, base/quote, last price, 24h volume"
      },
      "tx_hash": {
       "type": "string",
       "description": "EIP-3009 payment transaction hash on Base"
      },
      "timestamp": {
       "type": "string",
       "format": "date-time",
       "description": "Data freshness timestamp"
      },
      "amount_paid": {
       "type": "number",
       "description": "Amount paid for this request in USDC"
      },
      "total_markets": {
       "type": "integer",
       "description": "Number of available markets"
      }
     },
     "description": "Lighter DEX order books and market statistics"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-vibe-airforce-469d5d98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vibe.airforce](https://www.zero.xyz/host/api.vibe.airforce/llms.txt)
