# stablecrypto.dev Get New DeFi Pools

> stablecrypto.dev Get New DeFi Pools is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15, last successful call 2026-05-28).

Returns newly created liquidity pools across all blockchain networks, optionally filtered by time duration and enriched with base token data

## Facts

- Endpoint: POST https://stablecrypto.dev/api/coingecko/onchain/new-pools
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-05-28
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecrypto-dev-e285367a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9VQYLHEQeZ6lEJNzWQy8L

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 stablecrypto-dev-e285367a -d '<json body>'
```

Example prompt: Show me new liquidity pools that launched in the last 24 hours across all chains — page 1, and include base token details for each pool.

## When to prefer this

Use this endpoint when you need to discover the most recently created liquidity pools across all blockchain networks in a single call. Prefer this over trending-pools endpoints when recency (new launches) matters more than popularity or volume. Ideal for token sniping research, early-stage DeFi discovery, or monitoring new pool activity across multi-chain ecosystems.

## Known failure modes

- Invalid duration value returns error or empty result
- Page number out of range returns empty pool list
- Invalid include parameter may be ignored or cause error
- Network timeout on large responses
- Rate limiting or payment failure returns 402 or 429

## How this service works

Get new pools across all networks

## Output

A paginated list of newly created on-chain liquidity pools across all supported blockchain networks, including pool identifiers, associated tokens (with base token details when requested), network/chain info, creation timestamps, and trading metrics. The response can be large (35KB+) and is pageable.

## Example request

```json
{
 "page": 1,
 "include": "base_token",
 "duration": "24h"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number"
  },
  "include": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecrypto-dev-e285367a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
