Entwickler-API
Noon Barbari API
Bringen Sie unsere Backtesting-Engine hinter Ihren Code. Lesen Sie Indikatorsignale, DCA- und Buy-and-Hold-Ergebnisse, führen Sie den Deflated-Sharpe-Overfitting-Check auf Ihren eigenen Ergebnissen aus und durchsuchen Sie unseren offenen Curve-Fitting-Datensatz — über eine einfache REST-API mit Schlüssel.
Endpunkte
GET /v1/signalsDaily indicator readings (RSI/MACD/SuperTrend/…) — one coin or the 50-coin board.GET /v1/buy-holdPer-year buy-and-hold outcomes with peak and max drawdown.GET /v1/dcaDollar-cost-averaging outcome vs a lump sum, weekly or monthly.POST /v1/overfittingDeflated Sharpe Ratio on YOUR backtest — skill or selection luck?GET /v1/overfitting-indexThe monthly Crypto Overfitting Index, current + history.GET /v1/datasetQuery the open 11,440-run curve-fitting study.GET /v1/strategiesThe strategy template catalogue.Basis-URL: https://api.noonbarbari.xyz/v1 · authentifizieren Sie sich mit Authorization: Bearer nb_live_…
Schnellstart
curl
curl https://api.noonbarbari.xyz/v1/signals?coin=btc \ -H "Authorization: Bearer nb_live_…"
Python
import requests
r = requests.get(
"https://api.noonbarbari.xyz/v1/dca",
params={"coin": "eth", "amount": 100, "frequency": "weekly"},
headers={"Authorization": "Bearer nb_live_…"},
)
print(r.json()["data"])JavaScript
const r = await fetch("https://api.noonbarbari.xyz/v1/overfitting", {
method: "POST",
headers: {
"Authorization": "Bearer nb_live_…",
"Content-Type": "application/json",
},
body: JSON.stringify({ sharpe: 1.8, length_days: 730, n_trials: 200 }),
});
console.log((await r.json()).data);Preise
Kostenlose Stufe: 100 Aufrufe/Monat. Jedes Konto startet mit einer Testphase von 1,000 Aufrufen für 14 Tage.
Lieber KI-Assistenten? Dieselben Daten sind kostenlos über unseren MCP-Server. API-Nutzungsbedingungen.