402.bot
Recipe
live $0.0100 premium Market & Prediction

Polymarket Risk Watch

Turn Polymarket performance analytics into a concise risk memo with drawdown and behavior flags.

$0.0100price
2steps
2sources
75ktokens saved
6tool calls compressed
median latency
api.402.botGoogle Gemini Flash Structured

Endpoint: /v1/recipes/polymarket-risk-watch/run
Capabilities: askgina, predictions, polymarket, markets, risk-watch

Why pay for this?

This recipe turns roughly 6 separate tool operations into one paid endpoint call and saves about ~75k tokens saved.

Load Polymarket performance analytics -> Summarize risk watch

Creator

Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Load Polymarket performance analytics

http

Source: api.402.bot
Step id: analytics

Stage 2

Summarize risk watch

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load Polymarket performance analytics

{
  "id": "analytics",
  "url": "https://api.402.bot/analytics/predictions/polymarket/{{ $.input.walletAddress }}",
  "kind": "http",
  "query": {
    "days": "{{ $.input.days }}",
    "closedLimit": 50,
    "activityLimit": 100,
    "positionsLimit": 50
  },
  "title": "Load Polymarket performance analytics",
  "method": "GET",
  "outputPath": "$.response"
}

Summarize risk watch

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Summarize risk watch",
  "request": {
    "params": {
      "input": {
        "analytics": "{{ $.stepsById.analytics.output }}",
        "lookbackDays": "{{ $.stepsById.analytics.output.lookbackDays }}",
        "walletAddress": "{{ $.input.walletAddress }}"
      },
      "prompt": "Write a risk watch memo for this wallet's Polymarket activity. Focus on drawdown, exposure concentration, behavior flags, and practical limits.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "lookbackDays",
          "riskLevel",
          "summary",
          "drawdownNotes",
          "concentrationRisks",
          "behaviorFlags",
          "recommendedLimits"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "riskLevel": {
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "type": "string"
          },
          "lookbackDays": {
            "type": "integer"
          },
          "behaviorFlags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Behavior flags."
          },
          "drawdownNotes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Drawdown notes."
          },
          "walletAddress": {
            "type": "string"
          },
          "recommendedLimits": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Recommended limits."
          },
          "concentrationRisks": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Concentration risks."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a concise prediction-market risk memo. Stay grounded in the supplied analytics only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}