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 performance
Summarize a wallet's recent Polymarket performance, notable winners and losers, and practical follow-ups.
Endpoint: /v1/recipes/polymarket-performance-brief/run
Capabilities: askgina, predictions, polymarket, markets, wallet-performance
This recipe turns roughly 6 separate tool operations into one paid endpoint call and saves about ~75k tokens saved.
Load Polymarket performance analytics -> Summarize performance
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: 79
Success 30d: 100%
Refund 30d: 0%
Paid runs: 1
Creator recipes: 1
Last run: 2026-03-13 03:15Z
Source: api.402.bot
Step id: analytics
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| 948f9990-74a8-4ff8-b730-4d92f82f5dee | succeeded | recipe_api | 2026-03-13T03:14:36.665Z |
{
"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"
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Summarize performance",
"request": {
"params": {
"input": {
"analytics": "{{ $.stepsById.analytics.output }}",
"lookbackDays": "{{ $.stepsById.analytics.output.lookbackDays }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Summarize this wallet's Polymarket performance for an operator. Focus on realized versus unrealized results, top winners and losers, and practical next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"lookbackDays",
"summary",
"performanceHighlights",
"weakSpots",
"topWinners",
"topLosers",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"topLosers": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"realizedPnlUsdc"
],
"properties": {
"title": {
"type": "string"
},
"outcome": {
"type": "string"
},
"realizedPnlUsdc": {
"type": "number"
}
},
"additionalProperties": false
}
},
"weakSpots": {
"type": "array",
"items": {
"type": "string"
},
"description": "Weak spots."
},
"topWinners": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"realizedPnlUsdc"
],
"properties": {
"title": {
"type": "string"
},
"outcome": {
"type": "string"
},
"realizedPnlUsdc": {
"type": "number"
}
},
"additionalProperties": false
}
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"lookbackDays": {
"type": "integer"
},
"walletAddress": {
"type": "string"
},
"performanceHighlights": {
"type": "array",
"items": {
"type": "string"
},
"description": "Performance highlights."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise prediction-market performance brief. Stay grounded in the supplied analytics only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}