Skip to main content

prediction-market-arbitrage

Analyzes arbitrage opportunities across prediction markets like Polymarket and Kalshi for potential profit.

Install this skill

or
65/100

Security score

The prediction-market-arbitrage skill was audited on Jul 28, 2026 and we found 7 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

medium line 99

Curl to non-GitHub URL

SourceSKILL.md
97```bash
98# Find equivalent markets across platforms using a Polymarket slug
99curl -X GET "https://api.aisa.one/apis/v1/matching-markets/sports?polymarket_market_slug={polymarket_market_slug}" \
100 -H "Authorization: Bearer $AISA_API_KEY"
101
medium line 103

Curl to non-GitHub URL

SourceSKILL.md
101
102# Or find equivalent markets using a Kalshi event ticker
103curl -X GET "https://api.aisa.one/apis/v1/matching-markets/sports?kalshi_event_ticker={kalshi_event_ticker}" \
104 -H "Authorization: Bearer $AISA_API_KEY"
105```
medium line 111

Curl to non-GitHub URL

SourceSKILL.md
109```bash
110# Find all matching sports markets across platforms for a specific date
111curl -X GET "https://api.aisa.one/apis/v1/matching-markets/sports/{sport}?date={date}" \
112 -H "Authorization: Bearer $AISA_API_KEY"
113```
medium line 123

Curl to non-GitHub URL

SourceSKILL.md
121```bash
122# token_id comes from side_a.id or side_b.id in /polymarket/markets response
123curl -X GET "https://api.aisa.one/apis/v1/polymarket/market-price/{token_id}" \
124 -H "Authorization: Bearer $AISA_API_KEY"
125```
medium line 131

Curl to non-GitHub URL

SourceSKILL.md
129```bash
130# market_ticker comes from /kalshi/markets response
131curl -X GET "https://api.aisa.one/apis/v1/kalshi/market-price/{market_ticker}" \
132 -H "Authorization: Bearer $AISA_API_KEY"
133```
medium line 143

Curl to non-GitHub URL

SourceSKILL.md
141```bash
142# token_id comes from side_a.id or side_b.id in /polymarket/markets response
143curl -X GET "https://api.aisa.one/apis/v1/polymarket/orderbooks?token_id={token_id}" \
144 -H "Authorization: Bearer $AISA_API_KEY"
145```
medium line 151

Curl to non-GitHub URL

SourceSKILL.md
149```bash
150# ticker is the same value as market_ticker from /kalshi/markets response
151curl -X GET "https://api.aisa.one/apis/v1/kalshi/orderbooks?ticker={ticker}" \
152 -H "Authorization: Bearer $AISA_API_KEY"
153```
Scanned on Jul 28, 2026
View Security Dashboard
Installation guide →