Skip to main content 홈 크리에이터 javimosch open-claw-skills strykr-prism
strykr-prism Real-time financial data API for AI agents. Stocks, crypto, forex, ETFs. 120+ endpoints. Alternative to Alpha Vantage, CoinGecko. Works with Claude, Cursor.
설치로 이동 Skills Marketplace 커뮤니티가 만든 AI 스킬을 발견하고 탐색하세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/javimosch/open-claw-skills --skill strykr-prism명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Zip 다운로드 다운로드 중... name strykr-prism description Real-time financial data API for AI agents. Stocks, crypto, forex, ETFs. 120+ endpoints. Alternative to Alpha Vantage, CoinGecko. Works with Claude, Cursor. version 1.1.1 keywords finance-api, market-data, stock-api, crypto-api, trading-bot, real-time-data, alpha-vantage-alternative, polygon-alternative, coingecko-alternative, ai-trading, fintech, defi, ai, ai-agent, ai-coding, llm, cursor, claude, claude-code, gpt, copilot, mcp, langchain, vibe-coding, agentic, openclaw
Finance Data API (Strykr PRISM)
One API for all markets. Real-time financial data for AI agents, trading bots, and fintech apps.
Powered by Strykr PRISM — unified data across crypto, stocks, ETFs, forex, commodities, and DeFi.
Configuration
Set your PRISM API key:
export PRISM_API_KEY="your-api-key"
Base URL: https://strykr-prism.up.railway.app
Quick Reference
🔍 Asset Resolution (Core Feature)
Resolve ANY asset identifier to canonical form:
curl "$PRISM_URL /resolve/BTC"
curl " /resolve/BTCUSDT"
curl
curl -X POST \
-H \
-d
curl -X POST \
-H \
-d
curl
$PRISM_URL
"$PRISM_URL /resolve/bitcoin"
"$PRISM_URL /agent/resolve"
"Content-Type: application/json"
'{"query": "price of ethereum"}'
"$PRISM_URL /resolve/batch"
"Content-Type: application/json"
'{"symbols": ["BTC", "ETH", "AAPL", "GOLD"]}'
"$PRISM_URL /resolve/venues/BTC"
💰 Price Data
curl "$PRISM_URL /crypto/price/BTC"
curl "$PRISM_URL /crypto/price/ETH"
curl -X POST "$PRISM_URL /batch/crypto/prices" \
-H "Content-Type: application/json" \
-d '{"symbols": ["BTC", "ETH", "SOL"]}'
curl "$PRISM_URL /stocks/AAPL/quote"
curl -X POST "$PRISM_URL /stocks/batch/quotes" \
-H "Content-Type: application/json" \
-d '{"symbols": ["AAPL", "MSFT", "GOOGL"]}'
📊 Market Overview
curl "$PRISM_URL /market/overview"
curl "$PRISM_URL /crypto/global"
curl "$PRISM_URL /market/fear-greed"
curl "$PRISM_URL /crypto/trending"
curl "$PRISM_URL /stocks/gainers"
curl "$PRISM_URL /stocks/losers"
curl "$PRISM_URL /stocks/active"
🛡️ Token Security Analysis
curl "$PRISM_URL /analyze/BTC"
curl "$PRISM_URL /analyze/copycat/PEPE"
curl "$PRISM_URL /analyze/rebrand/MATIC"
curl "$PRISM_URL /analyze/fork/ETH"
curl "$PRISM_URL /analytics/holders/0x1234..."
🔥 Trending & Discovery
curl "$PRISM_URL /crypto/trending"
curl "$PRISM_URL /crypto/trending/solana/bonding"
curl "$PRISM_URL /crypto/trending/solana/graduated"
curl "$PRISM_URL /crypto/trending/pools"
curl "$PRISM_URL /crypto/trending/evm"
curl "$PRISM_URL /stocks/multi-day-movers"
📈 DeFi & Derivatives
curl "$PRISM_URL /dex/pairs"
curl "$PRISM_URL /dex/hyperliquid/pairs"
curl "$PRISM_URL /dex/hyperliquid/BTC/funding"
curl "$PRISM_URL /dex/hyperliquid/BTC/oi"
curl "$PRISM_URL /dex/BTC/funding/all"
curl "$PRISM_URL /dex/BTC/oi/all"
💼 Wallet & On-Chain
curl "$PRISM_URL /wallets/0xYourAddress/balances"
curl "$PRISM_URL /wallets/0xYourAddress/native"
curl "$PRISM_URL /chains"
curl "$PRISM_URL /analytics/price/onchain/0xContractAddress"
🌍 Traditional Finance
curl "$PRISM_URL /forex"
curl "$PRISM_URL /forex/USD/tradeable"
curl "$PRISM_URL /commodities"
curl "$PRISM_URL /commodities/GOLD/tradeable"
curl "$PRISM_URL /etfs/popular"
curl "$PRISM_URL /indexes"
curl "$PRISM_URL /indexes/sp500"
curl "$PRISM_URL /indexes/nasdaq100"
curl "$PRISM_URL /sectors"
🔧 System & Health
curl "$PRISM_URL /health"
curl "$PRISM_URL /crypto/sources/status"
curl "$PRISM_URL /registry/health"
Use Cases
Natural Language Price Lookup When user asks "what's the price of bitcoin" or "how much is ETH":
Use /agent/resolve for natural language → canonical asset
Use /crypto/price/{symbol} or /stocks/{symbol}/quote for price
Return formatted response
Token Security Check When user asks "is this token safe" or "check 0x1234...":
Use /analyze/{symbol} for general analysis
Use /analyze/copycat/{symbol} for scam detection
Use /analytics/holders/{contract} for whale concentration
Return risk assessment
Market Overview When user asks "how's the market" or "what's trending":
Use /market/overview for full picture
Use /market/fear-greed for sentiment
Use /crypto/trending for hot coins
Use /stocks/gainers + /losers for stock movers
Cross-Market Correlation When user asks "what correlates with bitcoin":
Use /market/overview for cross-market data
Compare crypto vs stocks/commodities/forex
PRISM's 120+ endpoints enable true cross-market analysis
Endpoint Speed Reference Endpoint Speed Use Case /resolve/{symbol}140-200ms Symbol resolution /crypto/price/{symbol}1.9-2.1s Single price /market/fear-greed229ms Sentiment /crypto/trending242ms Hot coins /analyze/copycat/{symbol}160ms Scam detection /stocks/{symbol}/quote214ms Stock price /agent/resolve3.4s NL queries
Unique Data (Nobody Else Has)
/crypto/trending/solana/bonding — Pump.fun launches
/analyze/copycat — Scam/copycat detection
/analyze/rebrand — Token migrations (MATIC→POL)
/dex/{symbol}/funding/all — Cross-venue funding rates
Example Responses
Price Lookup User: "price of bitcoin"
Response: "Bitcoin (BTC) is $43,250 (+2.1% 24h)"
Security Check User: "is PEPE safe"
Response: "🛡️ PEPE Analysis
• Risk Score: 35/100 (Low)
• Liquidity: Locked ✅
• Top holders: 15% concentration
• Copycat risk: None detected
Overall: Lower risk, but DYOR"
Market Overview User: "how's the market"
Response: "📊 Market Overview
Crypto: BTC $43.2K (+2%), ETH $2,290 (+1.8%)
Fear & Greed: 72 (Greed)
Trending: SOL, ONDO, WIF
Stocks: S&P +0.3%, NASDAQ +0.5%"