From f3bbcdd4a597c718885ae15b5d1e4f8756f36e4e Mon Sep 17 00:00:00 2001 From: guzusclaw Date: Thu, 19 Mar 2026 15:13:46 +0900 Subject: [PATCH] feat: add Palm (Polymarket analytics + meme data) to service directory - Polymarket on-chain analytics API (ClickHouse over indexed blockchain data) - Endpoints: /meme/random, /polymarket/overview, /market, /trader - Payment: Tempo mainnet, USDC - Service URL: https://mpp.guzus.xyz - llms.txt: https://mpp.guzus.xyz/llms.txt --- schemas/services.ts | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index e08b4a50..db2f247d 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -4328,4 +4328,50 @@ export const services: ServiceDef[] = [ }, ], }, + { + id: "palm", + name: "Palm", + url: "https://palm.guzus.xyz", + serviceUrl: "https://mpp.guzus.xyz", + description: + "Polymarket on-chain analytics API. Real-time trade data, market stats, trader profiles, and meme content — powered by ClickHouse over indexed blockchain data.", + categories: ["data", "blockchain"], + integration: "first-party", + tags: [ + "polymarket", + "prediction-markets", + "analytics", + "on-chain", + "memes", + ], + docs: { + homepage: "https://palm.guzus.xyz", + }, + provider: { name: "Guzus", url: "https://guzus.xyz" }, + realm: "mpp.guzus.xyz", + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { + route: "GET /meme/random", + desc: "Random crypto meme from memtherscan", + amount: "1000", + }, + { + route: "GET /polymarket/overview", + desc: "Polymarket aggregate stats: total trades, volume, top markets, top traders, recent trades", + amount: "50000", + }, + { + route: "GET /polymarket/market", + desc: "Specific market data by token ID", + amount: "20000", + }, + { + route: "GET /polymarket/trader", + desc: "Trader profile: trade count, volume, PnL, trade history", + amount: "20000", + }, + ], + }, ];