Noon Barbari

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é.

Obtenir votre clé APIRéférence de l'API

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.

developer
$19/mois
10,000 appels/mois · 60 /min
startup
$79/mois
100,000 appels/mois · 180 /min
scale
$299/mois
1,000,000 appels/mois · 600 /min

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.

API de backtesting crypto — signaux, DCA, contrôles de surajustement | Noon Barbari · Noon Barbari