编程

Isocast

试用

Polymarket weather-signal API for AI agents. When a city's observed daily-high temperature crosses into a new Polymarket temperature bucket, Isocast fires on...

它能做什么

Polymarket weather-signal API for AI agents. When a city's observed daily-high temperature crosses into a new Polymarket temperature bucket, Isocast fires one signal carrying the market URL, the old and new reading, and live odds for every bucket. 37 cities, with optional Telegram push delivery. Free to browse — cities, sample signal, pricing, and terms need no auth; deeper per-city signal bundles are pay-per-call via x402.

技能文档

Isocast — Polymarket Weather-Signal API for AI Agents

API at https://api.isocast.dev. Isocast watches 37 cities and, when a city's observed daily-high temperature crosses out of one Polymarket temperature bucket and into another, emits exactly one signal for that (city, day, transition). Every signal carries the Polymarket market URL, the old and new {reading, unit, bucket}, and live YES/NO/midpoint odds for every bucket (with dead: true on buckets the day can no longer reach). Browsing is free and needs no auth; deeper signals are per-city bundles bought pay-per-call.

Full API docs: api.isocast.dev/llms.txt | OpenAPI spec: api.isocast.dev/openapi.json

What a signal is

A signal fires when a city's daily-high reading moves into a new Polymarket bucket. It includes the market URL, the old/new bucket readings, and current odds for every bucket, plus bucketsAsOf (odds freshness, ~10s) and observedAt. Delivery is at-most-once per (city, day, bucket), and seq is a monotonic per-city counter so you can track what you've seen.

Free endpoints (no auth, no payment)

MethodPathDescription
GET/healthLiveness + configured payment mode (live|mock)
GET/v1/citiesAll active cities (slug, unit, bucketWidth, timezone, latestSeq). 30s cache
GET/v1/cities/:slugOne city + today's target date + Polymarket market URL
GET/v1/sample?city=SLUGA promo signal (fixed, never the latest) so you can see the shape before paying. sample: true
GET/v1/signals/meta?city=SLUGPricing + bundle tiers for a city (never returns signal rows)
GET/terms.txt · /terms.jsonTerms of Service (also sets X-Terms-URL)

Every JSON response also carries a disclaimer string.

Quick Start — Browse a City (free)

// All free, no auth, no setup
const BASE = "https://api.isocast.dev";

// 1. List active cities
const cities = await (await fetch(`${BASE}/v1/cities`)).json();
// cities: [{ slug, unit, bucketWidth, timezone, latestSeq }, ...]

// 2. Inspect today's market for one city
const city = await (await fetch(`${BASE}/v1/cities/istanbul`)).json();
// city: { slug, targetDate, marketUrl, ... }

// 3. See a sample signal shape before paying
const sample = await (await fetch(`${BASE}/v1/sample?city=istanbul`)).json();
// sample.signal: { marketUrl, old, new, buckets, observedAt, ... }, sample: true
MethodPathPriceDescription
GET/v1/spot?city=SLUG$0.01Snapshot of a city's LATEST signal — stock x402 (no binding nonce). Exactly one signal, never history. Uncharged on unknown-city / no-data.
POST/v1/subscribe?city=SLUG&count=N$0.01–$7.00Buy the next N signals for a city (bundle prepay, count ≥ 2; volume tiers).
GET/v1/signals?city=SLUG&since=SBearer receipt or x402Read signals you're entitled to (402 on exhaustion).

The cheapest read is GET /v1/spot?city=SLUG — a $0.01 snapshot of the city's latest signal, payable by a STOCK x402 client (plain @x402/fetch wrapFetchWithPayment, no custom nonce). For a running feed, buy a prepaid per-city bundle via /v1/subscribe (pay-per-call via x402; the effective unit price drops with bundle size), then read /v1/signals. Agents can use the isocast-mcp npm package (an MCP server) which handles payment for you, or read the full flow at api.isocast.dev/llms.txt. Entitled signals can also be pushed to a Telegram chat (free — the delivery registration route never charges).

Error Handling

  • 402 — Payment required for a paid signal route. See the docs above for the payment flow.
  • 429 — Rate limited. Respect the Retry-After header (seconds to wait).
  • 404 — Unknown or inactive city.

Machine discovery

PathWhat
/llms.txtThis doc (concise)
/openapi.jsonOpenAPI 3.1 spec
/discoveryDiscovery JSON (free/paid endpoint listing)

Disclaimer

Informational data only — not financial or betting advice. No guarantee of accuracy or outcome; prediction markets are restricted in some jurisdictions. Terms: https://isocast.dev/terms

相关技能

用 NOAA 或 Open-Meteo 预报扫描 Polymarket 温度市场,支持试运行与实盘控制。

作者 Simmer.Markets215 次安装5 星标

Access real-time Polymarket prediction markets with comprehensive data analysis. Track trending events, monitor odds fluctuations, and analyze price movements across all markets. Search and filter by category, volume, or popularity to identify high-interest opportunities. Stay ahead with historical

3 次安装

Pulls prediction-market odds, order books, and forecast questions from Polymarket, Kalshi, and Metaculus via the Crawlora API, returning clean JSON. Use when the user asks what the market thinks will happen, wants current odds/prices for an event, wants a market's price history or order book, or wants a forecasting community's aggregate prediction on a question.

1 次安装

实时查询 Polymarket 预测市场数据,涵盖赔率、热门市场、进行中的赛事和赛程。

21 次安装

Trade Kalshi weather markets using NOAA forecasts via Simmer SDK and DFlow on Solana. Port of the popular polymarket-weather-trader. Use when user wants to trade temperature markets on Kalshi, automate weather bets, or check NOAA forecasts.

42 次安装

Snipe Polymarket opportunities from your own signal sources. Monitors RSS feeds with Trading Agent-grade safeguards.

85 次安装