Connect your trading bots, scripts, and algorithms to Brainix via a single API key. Access real-time Forex, Crypto, and Polymarket intelligence — one endpoint, every market.
# Predict directional bias for EUR/USD
curl https://api.brainixlabs.com/v1/predict \
-H "Authorization: Bearer BRAINIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "brainix-forex-v2",
"symbol": "EUR/USD",
"horizon": "15m"
}'
# → response
{
"model": "brainix-forex-v2",
"symbol": "EUR/USD",
"signal": "LONG",
"confidence": 0.87,
"latency_ms": 9
}
One resilient API surface for every market your strategy touches.
A single key and schema across every model, market, and provider. No more juggling disparate SDKs.
Edge-deployed inference with single-digit millisecond medians — faster than any comparable API, so your bots act before the market moves.
Forex, Crypto, Polymarket and quant-strategy models, benchmarked and ranked side by side.
| Model | Market | Latency | Price | Status |
|---|---|---|---|---|
| brainix-forex-v2 | Forex | 8ms | $2.00 / request | Operational |
| polymarket-pred-alpha | Polymarket | 9ms | $2.00 / request | Operational |
| solana-tracker-v1 | Crypto | 11ms | $2.00 / request | Operational |
| quant-mean-revert-3 | Quant Strategy | 14ms | $1.20 / trade | Degraded |
Every model shares the same request/response contract. Swap markets by changing one field — your execution pipeline never changes.
Read full documentationimport requests
resp = requests.post(
"https://api.brainixlabs.com/v1/predict",
headers={"Authorization": "Bearer BRAINIX_API_KEY"},
json={
"model": "polymarket-pred-alpha",
"market_id": "us-election-2028",
},
)
print(resp.json())
No subscriptions, no free giveaways. Load credits, spend per request, revoke anytime.
$2.00 / request
Custom
Create an account, load credits, generate a key, and make your first prediction request in under five minutes.
Get Your API Key