Unified programmatic access to all research platform APIs
v1.1.0
Free Access for Stabilarity Researchers
The Stabilarity API Gateway is not a commercial product — it is research infrastructure provided free of charge to all community members.
Every researcher gets a personal API key automatically upon joining. Your key gives you access to all exposed research APIs including Geopolitical Risk data, ScanLab Medical AI, HPF Portfolio Optimizer, Research Articles, and AI Tools.
# Check gateway status
curl -H “X-API-Key: YOUR_KEY” https://hub.stabilarity.com/api/v1/status
# Get country risk data
curl -H “X-API-Key: YOUR_KEY” https://hub.stabilarity.com/api/v1/geo-risk/data/countries
# List research articles
curl -H “X-API-Key: YOUR_KEY” https://hub.stabilarity.com/api/v1/research/articles?limit=5
# Classify an AI use case
curl -X POST -H “X-API-Key: YOUR_KEY” -H “Content-Type: application/json” \
-d ‘{“use_case”:”fraud detection”,”industry”:”finance”}’ \
https://hub.stabilarity.com/api/v1/tools/classify
API Reference
Gateway Status
GET/v1/status
Returns gateway health and all backend service statuses. No authentication required for basic health check.
// Response will appear here
Geopolitical Risk API
Real-time geopolitical risk analysis with country scores, macro indicators, and chart visualizations.
GET/v1/geo-risk/status
Check health of the Geo Risk backend.
GET/v1/geo-risk/data/countries
Returns geopolitical risk scores for all tracked countries.
GET/v1/geo-risk/chart/{chart_type}
Returns a PNG chart. Types: world-map, risk-trend, country-comparison.
GET/v1/geo-risk/macro/current
Current macroeconomic indicators for risk assessment.
ScanLab Medical AI
Medical AI diagnostics with multiple models for image classification and analysis.
GET/v1/scanlab/health
ScanLab backend health check.
GET/v1/scanlab/models
List available diagnostic models.
POST/v1/scanlab/predict
Submit data for medical AI prediction. See /v1/scanlab/models for inputs.
GET/v1/scanlab/analytics
Usage analytics and model performance statistics.
HPF — Holistic Portfolio Framework
Portfolio optimization and risk analysis using the HPF methodology.
GET/v1/hpf/health
HPF backend health check.
GET/v1/hpf/sample
Sample portfolio with example allocations and risk metrics.
POST/v1/hpf/analyze
Submit portfolio data for HPF analysis and optimization.
Research Articles API
Access published research articles from the Stabilarity platform with DOI metadata and category filtering.
curl -X POST -H “X-API-Key: YOUR_KEY” -H “Content-Type: application/json” \
-d ‘{“use_case”:”customer churn prediction”,”industry”:”telecom”}’ \
https://hub.stabilarity.com/api/v1/tools/classify
// Response:
{
“category”: “Predictive Analytics”,
“fit_score”: 92,
“recommendation”: “Strong fit for Predictive Analytics in telecom. Recommend immediate pilot.”,
“aada_score”: 78
}
Interactive API Documentation
Full OpenAPI specification with try-it-out functionality. Enter your API key below to authenticate requests.
Authentication
API Key Authentication
All endpoints require authentication. Include your key in one of: X-API-Key: your-key-here (header, recommended) ?api_key=your-key-here (query parameter)
Rate limits: 100 req/min for researcher keys, 100 req/day for demo keys.
We use cookies to enhance your experience and analyze site traffic.
By clicking "Accept All", you consent to our use of cookies.
Read our Terms of Service for more information.