API Reference

Integrate ARCANUM's powerful trading signals directly into your own applications or trading bots using our REST API.

Base URL

https://api.arcanum.technology/v1

Authentication

The ARCANUM API uses Bearer Token authentication. You must include your API key in the Authorization header of every request.

Shell / cURL
curl -X GET https://api.arcanum.technology/v1/user \
  -H "Authorization: Bearer ar_live_SK8..."

Signals Resource

Access real-time and historical trading signals generated by the engine.

GET /signals/active

Returns a list of currently active trading signals that have not yet hit their take-profit or stop-loss levels.

Response

{
  "data": [
    {
      "id": "sig_8829302",
      "symbol": "BTC/USD",
      "type": "BUY",
      "entry_price": 89450.00,
      "current_price": 89820.50,
      "pnl_percentage": 0.41,
      "confidence_score": 0.87,
      "generated_at": "2026-01-20T14:30:00Z"
    }
  ],
  "meta": {
    "count": 1
  }
}
POST /signals/backtest

Run a custom backtest simulation for a specific strategy configuration on our historical data.

Request Body

{
  "symbol": "ETH/USD",
  "timeframe": "4h",
  "rsi_period": 14,
  "volume_threshold": 1.5,
  "date_range": {
    "start": "2025-01-01",
    "end": "2025-12-31"
  }
}

Need help? Contact Developer Support