Pearlixa Developer API — Crypto Quant Signals REST API for Builders

Build with Pearlixa

Everything you need to integrate institutional-grade quant signals into your applications. From simple REST APIs to high-performance WebSocket feeds.

pearlixa / basic.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Basic prediction request
const response = await fetch('https://api.pearlixa.com/api/v1/predictions/single', {
  method: 'POST',
  headers: {
    'X-API-Key': 'pl_your_api_key_here',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    symbol: 'BTCUSDT',
    horizon: 'long'
  })
});

const data = await response.json();
console.log(`${data.symbol}: ${data.action} (${(data.confidence * 100).toFixed(1)}%)`);
console.log(`Entry: $${data.entry_price}, Target: $${data.take_profit}, Stop: $${data.stop_loss}`);
⎇ main16 lines