# New Pools on Network

> New Pools on Network is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieve the most recently created liquidity pools on a specific blockchain network

## Facts

- Endpoint: POST https://stablecrypto.dev/api/coingecko/onchain/network/new-pools
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/new-pools-on-network-b85a1f6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uXxan16FFVICgAjYbTyY7

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 new-pools-on-network-b85a1f6b -d '<json body>'
```

Example prompt: Show me the newest liquidity pools on the Ethereum network — pull the first page of results.

## When to prefer this

Use this endpoint when you need to discover newly created liquidity pools on a specific blockchain network, especially for DeFi monitoring, new token pair discovery, or tracking DEX activity on a particular chain. Prefer this over trending pools when recency (newest first) matters more than popularity.

## Known failure modes

- Invalid or unrecognized network ID returns empty data or error
- Network not supported by CoinGecko OnChain returns no results
- Page number out of range returns empty data array
- Missing required 'network' field returns validation error
- Rate limiting or payment failure returns 402 or 429 status

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

An array of pool objects for the specified network, each containing details about newly created liquidity pools such as token pairs, pool addresses, creation timestamps, and associated trading metrics as provided by the CoinGecko OnChain data feed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number"
  },
  "include": {
   "type": "string"
  },
  "network": {
   "type": "string",
   "description": "Network ID"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/new-pools-on-network-b85a1f6b/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)
