# lobre.lat CEX Token Screener

> lobre.lat CEX Token Screener is a paid API for AI agents from lobre.lat, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Scans centralized exchange tokens by 24-hour price change and volume, returning top movers above configurable thresholds.

## Facts

- Endpoint: GET https://lobre.lat/api/v1/trading/engine/token-screener
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lobre-lat-cex-token-screener-a14092a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oIxVAM2U3CsH6sTAQYsxT

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 lobre-lat-cex-token-screener-a14092a6
```

Example prompt: Show me the top 10 tokens on Binance that have moved more than 8% in the last 24 hours and have at least $2 million in volume.

## When to prefer this

Use this endpoint when you need a fast, filtered scan of CEX-listed tokens sorted by 24h momentum — specifically when you want to control both price change threshold and volume floor simultaneously. Prefer this over raw price feeds when you need screening/ranking logic rather than just a quote for a specific token.

## Known failure modes

- Invalid exchange ID returns error (only binance, okx, bybit supported)
- limit out of range 1–50 returns validation error
- price_change_min or volume_change_min set to nonsensical values may return empty results
- No tokens meet threshold criteria returns empty result set
- Payment failure or insufficient USDC balance returns 402 error

## How this service works

Scan CEX tokens by 24h price change and volume. Returns top movers above threshold.

## Output

A ranked list of up to 50 tokens from the specified CEX (default: Binance) that exceed the given price change percentage threshold and minimum 24h USD volume, including price change and volume metrics for each token.

## 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": {
      "limit": {
       "type": "number",
       "description": "Max results (1–50). Default: 20"
      },
      "exchange": {
       "type": "string",
       "description": "CEX exchange id: binance, okx, bybit. Default: binance"
      },
      "price_change_min": {
       "type": "number",
       "description": "Min absolute price change % in 24h. Default: 5"
      },
      "volume_change_min": {
       "type": "number",
       "description": "Min 24h volume in USD. Default: 1000000"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lobre-lat-cex-token-screener-a14092a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lobre.lat](https://www.zero.xyz/host/lobre.lat/llms.txt)
