AlphaBee
Free During Beta

AlphaBee API

Access real-time trade intelligence from 100+ elite traders on X. Get AI-extracted trade ideas, market insights, technical indicators, and deep analysis — all through a simple REST API.

🤖AI-Powered Analysis📊Technical Indicators🔒Secure & Reliable

Quick Start

curl -X GET "https://api.alphabee.app/api/latest-ideas"

No API key required during our open beta — just make the request and go. Sign up for a full AlphaBee account.

Authentication

Open Access — No API Key Required

During our open beta, all endpoints are publicly accessible with no authentication needed. Just make your request and go.

Start Immediately

No sign-up or API key needed to start integrating. Copy any example below and run it — it works right away.

Future Plans

API keys and rate-limited tiers are coming post-beta. Sign up now to lock in early access.

Rate Limits

During the free beta, generous rate limits ensure fair usage for all developers. Rate limit headers are included in every response.

PlanRequests / minRequests / dayPrice
BetaCURRENT
601,000Free
Pro (Coming Soon)12010,000TBD
Enterprise (Coming Soon)UnlimitedUnlimitedContact Us

Response Headers

X-RateLimit-LimitMaximum requests per window
X-RateLimit-RemainingRemaining requests in current window
X-RateLimit-ResetUnix timestamp when the window resets

Endpoints

Base URL: https://api.alphabee.app

GET/api/latest-ideas

Get Latest Trade Ideas

Fetch the most recent batch of AI-extracted trade ideas and market insights. Updated daily at 12:00 AM UTC from 100+ curated elite traders on X.

Code Examples

curl -X GET "https://api.alphabee.app/api/latest-ideas"
POST/api/technicals

Get Technical Indicators

Fetch real-time technical analysis indicators for any ticker — RSI, MACD, and Bollinger Bands powered by Alpha Vantage.

Request Body

ParameterTypeRequiredDescription
tickerstringRequiredThe stock or ETF ticker symbol (e.g., "AAPL", "SPY").
intervalstringOptionalTime interval for indicators. Default: "daily".

Code Examples

curl -X POST "https://api.alphabee.app/api/technicals" \
  -H "Content-Type: application/json" \
  -d '{"ticker": "AAPL"}'
POST/api/insight-details

Deep Insight Analysis

Get AI-powered deep-dive analysis on any market insight with fact-checking, risk assessment, and related context. Powered by GPT-4o.

Request Body

ParameterTypeRequiredDescription
insightMarketInsightRequiredThe full insight object to analyze (must include category, summary, description, relevantTickers, and trader info).

Code Examples

curl -X POST "https://api.alphabee.app/api/insight-details" \
  -H "Content-Type: application/json" \
  -d '{
    "insight": {
      "category": "sector-rotation",
      "summary": "Flow rotating into defensives",
      "description": "Multiple traders noting...",
      "relevantTickers": ["XLU", "XLP"],
      "trader": { "username": "macrotrader" }
    }
  }'

Error Handling

The API uses standard HTTP status codes. All error responses include a JSON body with an error field describing the issue.

CodeStatusDescription
200OKRequest succeeded.
400Bad RequestInvalid or missing parameters.
404Not FoundEndpoint or resource not found.
429Too Many RequestsRate limit exceeded. Retry after the reset window.
500Internal Server ErrorAn unexpected error occurred. Please retry.
503Service UnavailableUpstream data source temporarily unavailable.

Example Error Response

{
  "error": "Missing required parameter: ticker",
  "status": 400
}

Type Reference

Core TypeScript types returned by the API. Use these as a reference for building type-safe integrations.

interfaceTradeIdea
interface TradeIdea {
  id: string;
  ticker: string;
  direction: 'bullish' | 'bearish';
  assetClass: 'equity' | 'crypto' | 'future' | 'forex';
  securityType: 'stock' | 'etf' | 'index-fund' | 'option' | 'crypto' | 'future' | 'forex';
  timeframe: 'intraday' | 'swing' | 'position' | 'long-term';
  rationale: string;
  confidence: number;            // 0.0 – 1.0
  trader: Trader;
  createdAt: string;             // ISO 8601 timestamp
  sourceUrl: string;
  tweetText?: string;
  fundamentalAnalysis?: FundamentalAnalysis;
}
interfaceMarketInsight
interface MarketInsight {
  id: string;
  category: 'market-sentiment' | 'volatility' | 'event'
           | 'sector-rotation' | 'technical' | 'macro';
  summary: string;
  description: string;
  relevantTickers?: string[];
  trader: Trader;
  confidence: number;            // 0.0 – 1.0
  createdAt: string;             // ISO 8601 timestamp
  sourceUrl: string;
}
interfaceTrader
interface Trader {
  id: string;
  username: string;
  displayName: string;
  profileImageUrl?: string;
  bio?: string;
  followersCount: number;
  verified: boolean;
}
interfaceFundamentalAnalysis
interface FundamentalAnalysis {
  signal: 'supported' | 'neutral' | 'contradicted';
  analysis: string;
  initialConfidence: number;
  finalizedConfidence: number;
  metrics: {
    marketCap?: string;
    peRatio?: string;
    eps?: string;
    profitMargin?: string;
    beta?: string;
    week52High?: string;
    week52Low?: string;
  };
}

Ready to Build?

No API key needed — start integrating AlphaBee's trade intelligence into your applications right now, for free.