Manage your API keys, monitor usage limits, and configure real-time webhooks for AI signals.
| Key Name | Token Prefix | Created | Last Used | Status | Actions |
|---|---|---|---|---|---|
| Production Alpha | sk_live_...94x2 | Oct 12, 2023 | 2 mins ago | Active | |
| Development Test | sk_test_...88p9 | Nov 05, 2023 | 1 day ago | Rate Limited |
Requests per month
850,420
of 1,000,000 limit
Receive real-time notifications for AI trade signals.
Get market bias prediction
# 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" }
]
}