API développeur
Noon Barbari API
Placez notre moteur de backtesting derrière votre code. Lisez des signaux d'indicateurs, des résultats DCA et buy-and-hold, exécutez le contrôle de surajustement Deflated-Sharpe sur vos propres résultats et interrogez notre jeu de données ouvert de curve-fitting — via une API REST simple et sécurisée par clé.
Points de terminaison
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.URL de base : https://api.noonbarbari.xyz/v1 · authentifiez-vous avec Authorization: Bearer nb_live_…
Démarrage rapide
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);Tarifs
Palier gratuit : 100 appels/mois. Chaque compte démarre avec un essai de 1,000 appels pendant 14 jours.
Vous préférez les assistants IA ? Les mêmes données sont disponibles gratuitement via notre serveur MCP. Conditions d'utilisation de l'API.