← Terminal API Marketplace DEV PORTAL
⚡ AlphaTerminal Developer Platform

Build on the most powerful
crypto terminal on the web.

Access real-time market data, AI trading signals, whale tracking, and portfolio APIs. Build bots, dashboards, and trading tools with the same data powering AlphaTerminal.

App Directory
15 API Endpoints
0 Your Calls Today
0 Active Keys
Listed Apps
Plugins
Free
$0 /mo
100 calls/day
  • Prices + OHLCV
  • Fear & Greed Index
  • AI Signals
  • Whale Tracking
  • Portfolio API
Pro API
$199 /mo
100,000 calls/day
  • All Developer APIs
  • Portfolio API
  • Trading API (Elite)
  • Webhooks
  • SLA support
Enterprise
Custom
Unlimited calls
  • All Pro APIs
  • Dedicated support
  • 99.9% SLA
  • Custom endpoints
  • Revenue share
Daily API Calls (Last 7 Days)
Across all your active keys
Top Endpoints (30 Days)
By total call volume

Click any endpoint to expand. Use your API key in the X-API-Key header.

GET /api/api-marketplace/v1/prices Market prices
symbolsstringComma-separated symbols (e.g. BTC,ETH,SOL). Max 20.
# Example Request
curl -H "X-API-Key: at_your_key" \
  "https://alphasterminal.com/api/api-marketplace/v1/prices?symbols=BTC,ETH,SOL"
GET /api/api-marketplace/v1/signals AI trading signals
limitintegerNumber of signals (max 50, default 10)
curl -H "X-API-Key: at_your_key" \
  "https://alphasterminal.com/api/api-marketplace/v1/signals?limit=10"
GET /api/api-marketplace/v1/whale-activity Whale wallet movements
limitintegerNumber of transactions (max 100, default 20)
curl -H "X-API-Key: at_your_key" \
  "https://alphasterminal.com/api/api-marketplace/v1/whale-activity?limit=20"
GET /api/api-marketplace/v1/fear-greed Fear & Greed index

No parameters. Returns the composite crypto Fear & Greed score.

curl -H "X-API-Key: at_your_key" \
  "https://alphasterminal.com/api/api-marketplace/v1/fear-greed"
GET /api/api-marketplace/v1/prediction-markets Prediction market listings
limitintegerMax results (default 20, max 100)
curl -H "X-API-Key: at_your_key" \
  "https://alphasterminal.com/api/api-marketplace/v1/prediction-markets?limit=20"
GET /api/api-marketplace/v1/portfolio Your portfolio positions

Returns portfolio positions linked to the API key owner. Requires read or full permission.

curl -H "X-API-Key: at_your_key" \
  "https://alphasterminal.com/api/api-marketplace/v1/portfolio"
Plugin Marketplace
One-click tools & bots that extend AlphaTerminal — built by the community
My Installed Plugins
Webhooks
Subscribe to AT events and receive instant HTTP POST callbacks
Available Events
Subscribe to any combination of these events
App Directory
Third-party apps built on AlphaTerminal APIs
Quick Start — JavaScript
Install and make your first call
// Install
npm install node-fetch

// Fetch BTC price
const response = await fetch(
  'https://alphasterminal.com/api/api-marketplace/v1/prices?symbols=BTC',
  { headers: { 'X-API-Key': 'at_your_key' } }
);
const { prices } = await response.json();
console.log(prices[0].price); // 67423.5
Quick Start — Python
Using the requests library
import requests

headers = {'X-API-Key': 'at_your_key'}
url = 'https://alphasterminal.com/api/api-marketplace/v1/prices'

r = requests.get(url, headers=headers, params={'symbols': 'BTC,ETH'})
data = r.json()
for p in data['prices']:
    print(f"{p['symbol']}: ${p['price']:,.2f}")
Authentication
All requests require an API key
# Option 1: X-API-Key header (preferred)
curl -H "X-API-Key: at_your_key" /v1/prices

# Option 2: Authorization header
curl -H "Authorization: Bearer at_your_key" /v1/prices

# Rate limit headers in response:
# X-RateLimit-Limit: 100
# X-RateLimit-Remaining: 97
# X-RateLimit-Reset: 2026-05-04
Error Codes
Standard HTTP status codes
200 OK             — Success
400 Bad Request    — Invalid parameters
401 Unauthorized   — Invalid/missing key
403 Forbidden      — Insufficient permissions
429 Too Many Reqs  — Rate limit exceeded
500 Server Error   — Retry with backoff

// Error response shape:
{ "success": false, "error": "Rate limit exceeded." }
Revenue Share Program
Earn by driving AlphaTerminal subscriptions

If an app you build on AT APIs drives new AlphaTerminal subscriptions, you earn 20% revenue share on each converted subscriber for 12 months. Submit your app to the directory, enable revenue share tracking, and we handle the attribution. Payouts monthly via Stripe. Contact developers@alphasterminal.com for partner program details.