strykr-prism

Coding Agents & IDEs
v1.1.2
Benign

Real-time financial data API for AI agents.

11.8K downloads1.8K installsby @nextfrontierbuilds

Setup & Installation

Install command

clawhub install nextfrontierbuilds/strykr-prism

If the CLI is not installed:

Install command

npx clawhub@latest install nextfrontierbuilds/strykr-prism

Or install with OpenClaw CLI:

Install command

openclaw skills install nextfrontierbuilds/strykr-prism

or paste the repo link into your assistant's chat

Install command

https://github.com/openclaw/skills/tree/main/skills/nextfrontierbuilds/strykr-prism

What This Skill Does

Strykr PRISM is a unified financial data API covering crypto, stocks, forex, ETFs, commodities, and DeFi through 120+ endpoints. It includes asset identifier resolution across naming conventions, token security analysis, and on-chain wallet data. Designed for use with AI agents and trading bots.

Replaces separate subscriptions to Alpha Vantage, CoinGecko, and similar providers by covering crypto, equities, forex, and DeFi in a single authenticated endpoint set.

When to Use It

  • Fetching live Bitcoin or ETH prices inside a trading bot
  • Checking a token contract address for copycat or scam risk
  • Pulling a market snapshot with fear & greed index for a morning briefing
  • Tracking cross-venue funding rates for a perpetuals strategy
  • Resolving natural language queries like 'price of ethereum' in an AI chat agent
View original SKILL.md file
# 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:
```bash
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:

```bash
# Resolve symbol (handles BTC, BTCUSD, XBT, bitcoin, etc.)
curl "$PRISM_URL/resolve/BTC"
curl "$PRISM_URL/resolve/BTCUSDT"
curl "$PRISM_URL/resolve/bitcoin"

# Natural language resolution (for agents)
curl -X POST "$PRISM_URL/agent/resolve" \
  -H "Content-Type: application/json" \
  -d '{"query": "price of ethereum"}'

# Batch resolve
curl -X POST "$PRISM_URL/resolve/batch" \
  -H "Content-Type: application/json" \
  -d '{"symbols": ["BTC", "ETH", "AAPL", "GOLD"]}'

# Find trading venues for asset
curl "$PRISM_URL/resolve/venues/BTC"
```

### πŸ’° Price Data

```bash
# Crypto price
curl "$PRISM_URL/crypto/price/BTC"
curl "$PRISM_URL/crypto/price/ETH"

# Batch crypto prices
curl -X POST "$PRISM_URL/batch/crypto/prices" \
  -H "Content-Type: application/json" \
  -d '{"symbols": ["BTC", "ETH", "SOL"]}'

# Stock quote
curl "$PRISM_URL/stocks/AAPL/quote"

# Batch stock quotes
curl -X POST "$PRISM_URL/stocks/batch/quotes" \
  -H "Content-Type: application/json" \
  -d '{"symbols": ["AAPL", "MSFT", "GOOGL"]}'
```

### πŸ“Š Market Overview

```bash
# Full market overview (crypto + tradfi)
curl "$PRISM_URL/market/overview"

# Crypto global stats
curl "$PRISM_URL/crypto/global"

# Fear & Greed Index
curl "$PRISM_URL/market/fear-greed"

# Trending crypto
curl "$PRISM_URL/crypto/trending"

# Stock movers
curl "$PRISM_URL/stocks/gainers"
curl "$PRISM_URL/stocks/losers"
curl "$PRISM_URL/stocks/active"
```

### πŸ›‘οΈ Token Security Analysis

```bash
# Analyze token for risks
curl "$PRISM_URL/analyze/BTC"

# Copycat/scam detection
curl "$PRISM_URL/analyze/copycat/PEPE"

# Check for rebrands (MATIC β†’ POL)
curl "$PRISM_URL/analyze/rebrand/MATIC"

# Fork detection
curl "$PRISM_URL/analyze/fork/ETH"

# Holder analytics (whale concentration)
curl "$PRISM_URL/analytics/holders/0x1234..."
```

### πŸ”₯ Trending & Discovery

```bash
# Trending crypto overall
curl "$PRISM_URL/crypto/trending"

# Solana Pump.fun bonding tokens (UNIQUE!)
curl "$PRISM_URL/crypto/trending/solana/bonding"

# Graduated from bonding curve
curl "$PRISM_URL/crypto/trending/solana/graduated"

# Trending DEX pools
curl "$PRISM_URL/crypto/trending/pools"

# EVM trending
curl "$PRISM_URL/crypto/trending/evm"

# Multi-day stock movers
curl "$PRISM_URL/stocks/multi-day-movers"
```

### πŸ“ˆ DeFi & Derivatives

```bash
# DEX pairs
curl "$PRISM_URL/dex/pairs"

# Hyperliquid perps
curl "$PRISM_URL/dex/hyperliquid/pairs"
curl "$PRISM_URL/dex/hyperliquid/BTC/funding"
curl "$PRISM_URL/dex/hyperliquid/BTC/oi"

# Cross-venue funding rates
curl "$PRISM_URL/dex/BTC/funding/all"

# Cross-venue open interest
curl "$PRISM_URL/dex/BTC/oi/all"
```

### πŸ’Ό Wallet & On-Chain

```bash
# Wallet balances (multi-chain)
curl "$PRISM_URL/wallets/0xYourAddress/balances"

# Native balance only
curl "$PRISM_URL/wallets/0xYourAddress/native"

# Supported chains
curl "$PRISM_URL/chains"

# On-chain price
curl "$PRISM_URL/analytics/price/onchain/0xContractAddress"
```

### 🌍 Traditional Finance

```bash
# Forex rates
curl "$PRISM_URL/forex"
curl "$PRISM_URL/forex/USD/tradeable"

# Commodities
curl "$PRISM_URL/commodities"
curl "$PRISM_URL/commodities/GOLD/tradeable"

# ETFs
curl "$PRISM_URL/etfs/popular"

# Indexes
curl "$PRISM_URL/indexes"
curl "$PRISM_URL/indexes/sp500"
curl "$PRISM_URL/indexes/nasdaq100"

# Sectors
curl "$PRISM_URL/sectors"
```

### πŸ”§ System & Health

```bash
# API health
curl "$PRISM_URL/health"

# Data source status
curl "$PRISM_URL/crypto/sources/status"

# Registry health
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":

1. Use `/agent/resolve` for natural language β†’ canonical asset
2. Use `/crypto/price/{symbol}` or `/stocks/{symbol}/quote` for price
3. Return formatted response

### Token Security Check

When user asks "is this token safe" or "check 0x1234...":

1. Use `/analyze/{symbol}` for general analysis
2. Use `/analyze/copycat/{symbol}` for scam detection
3. Use `/analytics/holders/{contract}` for whale concentration
4. Return risk assessment

### Market Overview

When user asks "how's the market" or "what's trending":

1. Use `/market/overview` for full picture
2. Use `/market/fear-greed` for sentiment
3. Use `/crypto/trending` for hot coins
4. Use `/stocks/gainers` + `/losers` for stock movers

### Cross-Market Correlation

When user asks "what correlates with bitcoin":

1. Use `/market/overview` for cross-market data
2. Compare crypto vs stocks/commodities/forex
3. 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-greed` | 229ms | Sentiment |
| `/crypto/trending` | 242ms | Hot coins |
| `/analyze/copycat/{symbol}` | 160ms | Scam detection |
| `/stocks/{symbol}/quote` | 214ms | Stock price |
| `/agent/resolve` | 3.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%"
```

---

Built by [@NextXFrontier](https://x.com/NextXFrontier)

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Fetching live Bitcoin or ETH prices inside a trading bot

AGENT
  1. 1Fetching live Bitcoin or ETH prices inside a trading bot
  2. 2Checking a token contract address for copycat or scam risk
  3. 3Pulling a market snapshot with fear & greed index for a morning briefing
  4. 4Tracking cross-venue funding rates for a perpetuals strategy
  5. 5Resolving natural language queries like 'price of ethereum' in an AI chat agent
OUTPUT
Real-time financial data API for AI agents.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedFeb 27, 2026