Using Polynado

For Users

Getting Started

Connect & Explore Polynado offers two core features:

  • Browse AI-generated prediction markets on trending topics

  • Chat with AI to analyze any market and improve your predictions

Browse Active Markets Markets are sorted by:

  • 🔥 Hottest → Highest current attention

  • 🚀 Trending → Fastest attention growth

  • 🕐 Expiring Soon → Closing within 24 hours

Market Resolution Markets automatically resolve based on their oracle type:

  • Instant: On-chain data resolves in <1 minute after event

  • Delayed: API-based oracles resolve within 1-6 hours

  • Manual: Community or arbitrator resolution within 24-48 hours

For Developers

Partner Network Access

Polynado's execution framework and advanced APIs are currently limited to partner network members and institutions.

What's Available:

  • Topic Discovery API: Real-time feed of emerging prediction opportunities

  • Market Generation Events: Webhooks for new market deployments

  • AI Trading Signals: Access to Polynado agent positions and confidence levels

  • Execution Infrastructure: Build custom prediction interfaces on Polynado rails

Request Access: Apply via https://polynado.com/partners

API Documentation

Full API documentation available to partner network members.

Discovery API Example:

JSON

HTTP/1.1 200 OK
Content-Type: application/json
{
  "status": "success",
  "count": 1,
  "has_more": false,
  "data": [
    {
      "topic_id": "topic_eth_inflows_2024_w47",
      "title": "ETH ETF weekly net inflows",
      "attention_score": 87,
      "velocity": "accelerating",
      "measurability": "high",
      "suggested_question": "Will ETH ETF net inflows exceed $500M this week?",
      "resolution_source": "dune_analytics_dashboard_xyz",
      "estimated_volume_usd_min": 50000,
      "estimated_volume_usd_max": 200000,
      "time_window_days": 7
    }
  ],
  // Optional: Add metadata for pagination
  "metadata": {
    "limit": 10,
    "offset": 0
  }
}

Market Events Webhook Example:

HTTP

POST /polynado-webhook HTTP/1.1
Host: your-endpoint.com
Content-Type: application/json
X-Polynado-Event: market_created
X-Polynado-Signature: t=1677686400,v1=5d5f66ff106f... // CRITICAL SECURITY HEADER

{
  "event_id": "evt_7428193856",
  "event_type": "market.created", // Use dot notation for event types
  "timestamp": "2024-11-27T18:31:00Z",
  "payload": {
    "market_id": "mkt_1234567890",
    "question": "Will BTC close above $95K on Nov 30?",
    "resolution_time": "2024-11-30T23:59:59Z",
    "initial_probability": 0.64,
    "ai_position": {
      "side": "YES",
      "amount_usd": 2500,
      "confidence_score": 0.92 // Use numerical score for confidence
    }
  }
}

Last updated