# OrcaTrace Polymarket Batch Signals Feed

> OrcaTrace Polymarket Batch Signals Feed is a paid API for AI agents from api.orcatrace.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a batch of up to 20 quality-gated Polymarket signal items (movers, whale entries, predetermined signals) with order-book microstructure and whale calibration data.

## Facts

- Endpoint: GET https://api.orcatrace.dev/v1/signals
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orcatrace-polymarket-batch-signals-feed-484613a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vayKqap4OAwizG9_hk7Uw

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 orcatrace-polymarket-batch-signals-feed-484613a6
```

Example prompt: Pull up to 20 new Polymarket signals since feed index 150 — I want both movers and whale entries so I can see what big traders are doing and which markets are repricing.

## When to prefer this

Use this endpoint when you need to fetch multiple Polymarket signals in a single call (up to 20) rather than one at a time, reducing per-item cost and round trips. Prefer this over the single-item endpoint when building dashboards, running batch analysis, or polling for all new activity since a last-seen index. Use the type filter to focus on a specific signal category (movers, whale entries, or predetermined signals).

## Known failure modes

- Invalid 'type' filter value returns an error (must be mover, whale_entry, or predetermined)
- 'count' out of range (must be 1-20) returns validation error
- 'since' index value beyond current feed end returns empty result set
- Payment failure (insufficient USDC balance or x402 misconfiguration) returns 402 — no charge applied on error
- Network timeout if the feed computation takes longer than expected

## How this service works

Paid ($0.03 USDC via x402). Batch Polymarket feed items (up to 20): quality-gated movers + order-book microstructure, whale entries with calibration, predetermined signals. Poll GET /v1/index (free), then ?since=N for new items; filter with &type=mover|whale_entry|predetermined. Compute-first / settle-after — you are never charged for an error.

## Output

A batch of up to 20 Polymarket signal objects (filtered by type if specified), each containing quality-gated mover data with order-book microstructure, whale entry details with hold-to-resolution calibration scores, or predetermined signals. Items are indexed so the caller can track position for subsequent polls.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "type": {
       "type": "string",
       "description": "Filter: mover, whale_entry, or predetermined."
      },
      "count": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1,
       "description": "Max items (1-20, default 10)."
      },
      "since": {
       "type": "integer",
       "description": "Feed index to fetch items after (poll pattern)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "data": {},
    "type": "mover",
    "title": "Will the next US-Iran meeting be in Switzerland?",
    "createdAt": "2026-07-09T18:40:00.000Z",
    "feedIndex": 1042
   }
  ],
  "count": 1,
  "charged": true,
  "filters": {
   "type": "all",
   "count": 10,
   "since": 1000
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orcatrace-polymarket-batch-signals-feed-484613a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orcatrace.dev](https://www.zero.xyz/host/api.orcatrace.dev/llms.txt)
