ravine-api

free 10k/day no signup AUC 0.77

One POST endpoint. Predict whether a Solana pump.fun memecoin is about to rupture (drop ≥10% in next 5 ticks).

Trained on 15,724 real trajectories captured from live pump.fun activity. Returns calibrated probability + decision tier.

Try the endpoint →

Quickstart

curl -X POST https://YOUR_HOST/v1/predict \
  -H "Content-Type: application/json" \
  -d '{
    "history": [
      {"ts":1700000000,"mcap":5000,"buy_count":8,"sell_count":1,"buy_sol":4.0,"sell_sol":0.4,"bond":0.05},
      {"ts":1700000010,"mcap":5500,"buy_count":7,"sell_count":2,"buy_sol":3.5,"sell_sol":0.5,"bond":0.06},
      {"ts":1700000020,"mcap":6200,"buy_count":6,"sell_count":4,"buy_sol":2.8,"sell_sol":1.2,"bond":0.07},
      {"ts":1700000030,"mcap":6400,"buy_count":4,"sell_count":6,"buy_sol":1.5,"sell_sol":2.5,"bond":0.07}
    ]
  }'

Response:

{
  "p_rupture": 0.92,
  "decision": "QUANTUM_EXIT_NOW",
  "model_loaded": true,
  "quota_remaining": 9999
}

Why?

Helius, Birdeye, Moralis give you raw Solana data. They do not tell you what to do with it. ravine-api gives a calibrated rupture probability — exit-or-hold decisions for memecoin trading bots.

Decisionp_ruptureMeaning
HOLD< 0.30No rupture signal
QUANTUM_CAUTION0.30–0.60Consider partial exit
QUANTUM_EXIT_NOW≥ 0.60Exit recommended

Model

Limits

API spec

Swagger UI · OpenAPI 3.1 JSON · health

Code

Source on GitHub. MIT license.

If this saves you money, send some SOL: YOUR_WALLET_HERE · 0.001 SOL is plenty.