API Documentation

Programmatic access to signals, portfolio allocations, and regime data. RESTful JSON designed for quantitative workflows.

Authentication

All endpoints require a Bearer token. API keys available to approved institutional clients.

Authorization: Bearer YOUR_API_KEY
Base URLhttps://api.seekingedgeinvestment.com
GET/api/v1/signals

Full signal set with predictions, conviction tiers, strategy recommendations, and execution metrics.

Parameters
NameTypeRequiredDescription
tierstringNoFilter: HIGH, MED, LOW
sectorstringNoGICS sector name
min_prednumberNoMin predicted return (%)
sortstringNopred, totalPnL, optROC, volEdge
Example
curl -H "Authorization: Bearer YOUR_KEY" \
  "https://api.seekingedgeinvestment.com/v1/signals?tier=HIGH"
Response200 OK
{
  "signals": [{
    "ticker": "NVDA",
    "pred": 48.3,
    "tier": "HIGH",
    "sector": "Technology",
    "bestOpt": "OTM_Call_20",
    "optROC": 267.6,
    "optWin": 75,
    "totalPnL": 7832,
    "volEdge": 8.3
  }],
  "meta": { "count": 46, "version": "v11" }
}
Rate Limits
Limit100 req/min
Formatapplication/json
VersioningURL path (/v1/)

API access available to approved institutional clients.