# SolMachina New Pairs — Recent Solana Liquidity Pool Discovery

> SolMachina New Pairs — Recent Solana Liquidity Pool Discovery is a paid API for AI agents from api.solmachina.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the most recently launched Solana liquidity pools with name, token mint address, age, liquidity, and 24h volume

## Facts

- Endpoint: GET https://api.solmachina.com/v1/new-pairs
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solmachina-new-pairs-recent-solana-liquidity-pool-discovery-09b8010f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q6mlHN8GHEiefI6BNkixf

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 solmachina-new-pairs-recent-solana-liquidity-pool-discovery-09b8010f
```

Example prompt: Pull the 10 newest Solana liquidity pools from SolMachina right now — I want to see each pool's name, mint address, how many minutes old it is, and its current liquidity in USD.

## When to prefer this

Use this endpoint when you need real-time discovery of the very newest Solana liquidity pools without an API key or account. Ideal for agents doing continuous new-token monitoring, early-launch trading research, or populating a pipeline for further risk analysis. It pairs naturally with SolMachina's token risk and wallet profiling endpoints for a full due-diligence workflow. Prefer it over manual DEX scraping or aggregators that have a lag — this is designed for machine-speed, pay-per-call DeFi intelligence.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Limit parameter out of range (below 1 or above 20) — likely returns 400 Bad Request
- No new pools available (unlikely but possible during low-activity periods) — returns empty pools array
- Solana RPC or data source unavailable — may return 503 or timeout

## How this service works

Before an AI agent executes on Solana, it asks SolMachina: risk + a decision (EXECUTE/REVIEW/REJECT) + an SMRI score + a signed receipt, paid per call over x402 in USDC. Trust-first — cites every source, says 'unknown' over guessing. No account, no API key.

## Output

A JSON object with a count integer and a pools array. Each pool entry includes the pool name (string), base mint address (Solana token address string), age in minutes (integer), current liquidity in USD (integer), and 24-hour trading volume in USD (integer). Up to 20 pools are returned depending on the requested limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "How many new pools to return, 1-20 (default 15)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "pools": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "baseMint": {
      "type": "string"
     },
     "ageMinutes": {
      "type": "integer"
     },
     "liquidityUsd": {
      "type": "integer"
     },
     "volume24hUsd": {
      "type": "integer"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solmachina-new-pairs-recent-solana-liquidity-pool-discovery-09b8010f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solmachina.com](https://www.zero.xyz/host/api.solmachina.com/llms.txt)
