# PunkPredictor Top Delayed Deals

> PunkPredictor Top Delayed Deals is a paid API for AI agents from api.punkpredictor.xyz, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Returns CryptoPunks currently listed below their fair value based on delayed pricing data, ranked by discount percentage

## Facts

- Endpoint: GET https://api.punkpredictor.xyz/agents/v2/top-delayed
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/punkpredictor-top-delayed-deals-31038229
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_urQzDrfJfb98sxgEISn5A

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 punkpredictor-top-delayed-deals-31038229
```

Example prompt: Show me the top 10 CryptoPunks that are currently listed at the biggest discount to their fair value — I want to find the most underpriced punks available right now.

## When to prefer this

Use this endpoint when you want delayed (non-real-time) deal rankings for CryptoPunks — useful for batch analysis or when real-time pricing is not required. Prefer the 'Top Realtime Deals' sibling endpoint if you need live market data. This endpoint is ideal for identifying undervalued punks with a discount to fair value based on PunkPredictor's proprietary valuation model.

## Known failure modes

- Invalid limit parameter (outside 1–100 range) returns a validation error
- Payment not received or x402 payment failure results in 402 response
- Service unavailable or upstream data lag may return 503 or empty results
- Rate limiting may occur if called too frequently

## How this service works

Top delayed deals

## Output

A JSON object containing a mode field ('delayed'), a count of results, and an array of punk listings each with: punk ID, estimated fair price in ETH, current listed price in ETH, and the percentage discount relative to fair value — sorted by largest discount first.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "delayed",
  "count": 1,
  "results": [
   {
    "id_punk": 5822,
    "fair_price_eth": 28.74,
    "listed_price_eth": 26,
    "discount_to_fair_pct": 9.53
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/punkpredictor-top-delayed-deals-31038229/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.punkpredictor.xyz](https://www.zero.xyz/host/api.punkpredictor.xyz/llms.txt)
