Developers

The BarnacleAI API

Signals, sentiment, whale flow and market data — programmatically.

Real-time signals

Push and pull signals across every supported market.

REST + WebSocket

OpenAPI spec, typed SDKs for TS and Python.

Simple auth

API keys with granular scopes and per-key rate limits.

Read the docs
curl https://api.barnacle.ai/v1/signals \
  -H "Authorization: Bearer $BARNACLE_KEY"

{
  "data": [
    {
      "id": "sig_1a2b3c",
      "symbol": "BTCUSDT",
      "side": "long",
      "entry": 70240,
      "tp": 73800,
      "sl": 68900,
      "confidence": 0.92,
      "created_at": "2026-07-22T10:14:00Z"
    }
  ]
}