API Access & Developer Portal

Live

API Access & Developer Portal

Manage your API keys, monitor usage limits, and configure real-time webhooks for AI signals.

Active API Keys

System Operational
Key NameToken PrefixCreatedLast UsedStatusActions
Production Alphask_live_...94x2Oct 12, 20232 mins agoActive
Development Testsk_test_...88p9Nov 05, 20231 day agoRate Limited

API Usage

Requests per month

850,420

of 1,000,000 limit

Day 1Day 15Day 30

Webhooks

Receive real-time notifications for AI trade signals.

Signal Alert EventsTriggers when confidence > 85%

Quick Start

Get market bias prediction

Full Documentation
# Get AI Market Bias for EUR/USD

curl "https://api.forexai.com/v1/market-bias" \
  -H "Authorization: Bearer sk_live_...94x2" \
  -H "Content-Type: application/json" \
  -d '{
    "pair": "EURUSD",
    "timeframe": "4h",
    "indicators": ["rsi", "macd", "sentiment"]
  }'

Response 200 OK

{
  "pair": "EURUSD",
  "bias": "bullish",
  "confidence": 0.87,
  "signals": [
    { "source": "RSI", "value": 42.5 },
    { "source": "AI_Model_v4", "prediction": "UP" }
  ]
}