# Fresh On-Chain Markets Watcher

> Fresh On-Chain Markets Watcher is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Discovers newly listed or freshly deployed on-chain DeFi markets and returns liquidity, age, and risk metadata for each.

## Facts

- Endpoint: POST https://gpt55.558686.xyz/fresh-markets-watch/entrypoints/watch_fresh_markets/invoke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fresh-on-chain-markets-watcher-666016db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tk8kCyd_vbgvmiYKHnxQy

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 fresh-on-chain-markets-watcher-666016db -d '<json body>'
```

Example prompt: Can you pull up any freshly listed on-chain DeFi markets from the last 24 hours and give me their liquidity, how old they are, and any risk warnings I should know about?

## When to prefer this

Use this endpoint when an AI agent needs to discover brand-new or recently deployed on-chain DeFi markets, especially when liquidity, market age, and risk context are needed together. Prefer this over general liquidity pool endpoints when the recency and freshness of market listings is the primary concern, or when risk notes for newly created pools are required for safe agent decision-making.

## Known failure modes

- No fresh markets found within the queried timeframe — returns empty list or null results
- Invalid or malformed request body — returns 400-style error
- Upstream on-chain data source unavailable — returns timeout or 503
- Payment not processed — returns 402 requiring USDC payment on Base
- Rate limiting or quota exceeded — returns 429

## How this service works

Discover newly listed or fresh on-chain markets and return liquidity, age, and risk notes for DeFi agents.

## Output

Returns a list of newly deployed or recently listed on-chain DeFi markets, each with liquidity metrics, market age, and risk notes (e.g. low liquidity warnings, honeypot signals, age-based caution flags) suitable for DeFi agent decision-making.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fresh-on-chain-markets-watcher-666016db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gpt55.558686.xyz](https://www.zero.xyz/host/gpt55.558686.xyz/llms.txt)
