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_KEYBase URL
https://api.seekingedgeinvestment.comGET
/api/v1/signalsFull signal set with predictions, conviction tiers, strategy recommendations, and execution metrics.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| tier | string | No | Filter: HIGH, MED, LOW |
| sector | string | No | GICS sector name |
| min_pred | number | No | Min predicted return (%) |
| sort | string | No | pred, 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.