prediction-markets
예측 시장 API
Polymarket과 Kalshi의 실시간 예측 시장 배당률. 활성 시장, 확률, 거래량, 카테고리. 에이전트가 이벤트 예측에 필요한 베팅 인텔리전스 레이어. x402를 통한 호출당 결제(USDC on Base L2) -- API 키 없음, 가입 없음, 요청 한도 없음.
klymax402 마켓플레이스의 일부 -- AI 에이전트를 위한 100개의 x402 마이크로결제 API, 하나의 지갑, USDC on Base.
빠른 시작 -- MCP
MCP 클라이언트 설정(Claude Desktop, Cursor, ElizaOS 등)에 추가하세요:
{
"mcpServers": {
"prediction-markets": {
"url": "https://prediction-markets.api.klymax402.com/mcp"
}
}
}Related MCP server: Polymarket MCP Server
빠른 시작 -- HTTP (x402)
curl -X POST "https://prediction-markets.api.klymax402.com/api/markets" \
-H "Content-Type: application/json" \
-d '{}'
# -> 402 Payment Required, with an x402 payment challenge in the response bodyx402를 지원하는 모든 클라이언트(@x402/fetch, x402-agent-tools, ATXP)는 402 -> 서명 -> 재시도 사이클을 자동으로 처리합니다.
도구
도구 | 메서드 | 경로 | 가격 | 설명 |
| POST |
| $0.012 | Polymarket과 Kalshi의 활성 예측 시장 목록을 현재 배당률, 거래량, 카테고리와 함께 표시합니다. 주제, 플랫폼으로 필터링하고 거래량, 최신순, 곧 마감순으로 정렬할 수 있습니다. |
| POST |
| $0.012 | ID 또는 검색어로 특정 예측 시장의 상세 배당률 및 거래 데이터를 가져옵니다. Polymarket과 Kalshi를 모두 검색합니다. |
| POST |
| $0.008 | Polymarket과 Kalshi의 거래량과 참여도 기준 상위 트렌딩 예측 시장을 제공합니다. |
prediction_list_markets
활성 예측 시장을 탐색하거나 실제 이벤트에 대한 베팅 배당률을 찾아야 할 때 사용합니다. Polymarket과 Kalshi의 활성 시장 목록을 현재 확률, 거래량, 메타데이터와 함께 반환합니다.
매개변수
이름 | 유형 | 필수 | 설명 |
| string | 아니요 | 주제 카테고리로 시장을 필터링합니다. 생략하면 전체 카테고리를 대상으로 합니다. |
| number | 아니요 | 반환할 시장 수 (1-50). 기본값: 20. |
| string | 아니요 | 정렬 순서. 'volume' = 거래량 높은 순, 'newest' = 최근 생성 순, 'closing_soon' = 곧 마감 순. 기본값: volume. |
| string | 아니요 | 플랫폼별 필터링. 생략하면 Polymarket과 Kalshi 양쪽 시장을 가져옵니다. |
반환값
question-- 예측 시장 질문 (예: "비트코인이 2026년 12월까지 $100k에 도달할까요?")outcomePrices-- 각 결과에 대한 확률 (소수점, 0.65 = YES 확률 65%)volume-- 총 거래량 (USD)liquidity-- 현재 유동성 (USD)endDate-- 시장이 해소되는 시점category-- 주제 카테고리 (politics, crypto, sports, science, culture)active-- 시장이 현재 거래 중인지 여부source-- 데이터 소스 -- "polymarket" 또는 "kalshi"
응답 예시:
{ markets: [{ question: "Will Trump win 2028?", outcomePrices: { "Yes": 0.42, "No": 0.58 }, volume: 15420000, liquidity: 890000, endDate: "2028-11-06", category: "politics", source: "polymarket" }] }다음 용도에는 부적합: 암호화폐 가격 데이터 (token_get_price 사용), 암호화폐 뉴스 (crypto_get_news 사용), 주가 (stock_get_quote 사용), DeFi 수익률 (defi_find_best_yields 사용), Hyperliquid 무기한 계약 데이터 (hyperliquid_get_market_data 사용).
prediction_get_market_odds
특정 예측 시장에 대한 상세 배당률, 확률, 거래 데이터가 필요할 때 사용합니다. Polymarket과 Kalshi를 모두 검색하여 시장 ID 또는 질문 텍스트로 최적의 일치 항목을 찾습니다.
매개변수
이름 | 유형 | 필수 | 설명 |
| string | 아니요 | Polymarket condition ID 또는 Kalshi ticker. 시장 ID를 이미 알고 있는 경우 사용합니다. |
| string | 아니요 | 질문 텍스트로 시장을 찾기 위한 검색어 (예: 'bitcoin 100k', 'trump election'). marketId를 모를 때 사용합니다. |
반환값
question-- 전체 예측 시장 질문 텍스트outcomes-- 현재 확률이 포함된 가능한 결과 배열outcomePrices-- 결과별 소수점 확률 (0.72 = 내재 확률 72%)volume-- 전체 기간 총 거래량 (USD)volume24h-- 최근 24시간 거래량liquidity-- 현재 호가창 깊이 (USD)endDate-- 시장 해소 날짜description-- 상세 시장 설명 및 해소 기준active-- 시장이 현재 거래 가능한지 여부source-- 시장 출처 플랫폼 -- "polymarket" 또는 "kalshi"
응답 예시:
{ question: "Will ETH flip BTC by 2027?", outcomes: ["Yes", "No"], outcomePrices: { "Yes": 0.08, "No": 0.92 }, volume: 2340000, volume24h: 45000, liquidity: 120000, endDate: "2027-12-31", active: true, source: "polymarket" }다음 용도에는 부적합: 암호화폐 가격 데이터 (token_get_price 사용), 암호화폐 뉴스 (crypto_get_news 사용), 주가 (stock_get_quote 사용), DeFi 수익률 (defi_find_best_yields 사용), Hyperliquid 무기한 계약 데이터 (hyperliquid_get_market_data 사용).
prediction_trending_markets
현재 어떤 예측 시장이 트렌딩 중인지 확인해야 할 때 사용합니다. Polymarket과 Kalshi 양쪽의 최근 거래량과 활동 기준 인기 시장을 반환합니다.
매개변수
이름 | 유형 | 필수 | 설명 |
| number | 아니요 | 반환할 트렌딩 시장 수 (1-30). 기본값: 10. |
| string | 아니요 | 플랫폼별 필터링. 생략하면 Polymarket과 Kalshi 양쪽의 트렌딩 시장을 가져옵니다. |
반환값
question-- 시장 질문probability-- 선두 결과의 현재 내재 확률 (소수점)volume24h-- 최근 24시간 거래량 (USD)totalVolume-- 전체 기간 총 거래량 (USD)priceChange24h-- 최근 24시간 확률 변화 (예: +0.05 = 확률 5% 상승)category-- 주제 카테고리endDate-- 시장이 해소되는 시점source-- 데이터 소스 -- "polymarket" 또는 "kalshi"
응답 예시:
{ trending: [{ question: "Will Fed cut rates in July 2026?", probability: 0.73, volume24h: 890000, totalVolume: 12500000, priceChange24h: 0.08, category: "politics", endDate: "2026-07-31", source: "polymarket" }] }다음 용도에는 부적합: 암호화폐 가격 데이터 (token_get_price 사용), 암호화폐 뉴스 (crypto_get_news 사용), 주가 (stock_get_quote 사용), DeFi 수익률 (defi_find_best_yields 사용), Hyperliquid 무기한 계약 데이터 (hyperliquid_get_market_data 사용).
에이전트 프롬프트 예시
"활성 예측 시장을 탐색하거나 실제 이벤트에 대한 베팅 배당률 찾기"
"특정 예측 시장에 대한 상세 배당률, 확률, 거래 데이터"
"현재 트렌딩 중인 예측 시장 확인"
결제
프로토콜: x402 -- HTTP 기반 호출당 결제, 가입 없음, API 키 없음
네트워크: Base L2 (
eip155:8453)자산: USDC
파실리테이터: Coinbase CDP (기본), PayAI (대체)
ATXP를 통해서도 접근 가능 (OAuth 래핑 x402, RFC 9728 보호 리소스 메타데이터)
klymax402의 일부
AI 에이전트를 위한 100개의 x402 마이크로결제 API -- 하나의 지갑, USDC on Base, 가입 제로.
전체 API 레퍼런스: https://klymax402.com/llms-full.txt
실시간 통계: https://klymax402.com/stats
라이선스
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to query Polymarket prediction markets, accessing real-time odds, market data, price history, order books, and trending markets across categories like politics, crypto, and sports through natural language.155MIT
- AlicenseBqualityNot gradedmaintenanceEnables AI agents to interact with the Polymarket prediction market platform to discover markets, analyze real-time pricing, and monitor public portfolio data. It provides comprehensive access to market analytics, implied probabilities, and order books through the Model Context Protocol.5915
- AlicenseNot gradedqualityDmaintenanceEnables real-time access to Polymarket prediction market odds, allowing AI agents to retrieve events, markets, and search for predictions with formatted outputs.5MIT
- AlicenseAqualityBmaintenanceEnables AI agents to discover and analyze prediction markets, execute trades, and manage positions on Polymarket via the Model Context Protocol.77619MIT
Related MCP Connectors
Calibrated world model for AI agents. 40 tools: world state, markets, trading. Kalshi + Polymarket.
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
Machine-payable prediction-market briefs and probability-change monitoring for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Br0ski777/prediction-markets-x402'
If you have feedback or need assistance with the MCP directory API, please join our Discord server