Noon Barbari

API per sviluppatori

Noon Barbari API

Metti il nostro motore di backtesting dietro il tuo codice. Leggi segnali di indicatori, risultati DCA e buy-and-hold, esegui il controllo di overfitting Deflated-Sharpe sui tuoi risultati e interroga il nostro dataset aperto di curve-fitting — tramite una semplice API REST con chiave.

Ottieni la tua chiave APIRiferimento API

Endpoint

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 di base: https://api.noonbarbari.xyz/v1 · autenticati con Authorization: Bearer nb_live_…

Avvio rapido

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);

Prezzi

Livello gratuito: 100 chiamate/mese. Ogni account inizia con una prova di 1,000 chiamate per 14 giorni.

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

Preferisci gli assistenti IA? Gli stessi dati sono disponibili gratuitamente tramite il nostro server MCP. Termini di utilizzo dell'API.