Comprehensive tools and documentation to get you building quickly
Complete code examples, SDKs, and implementation guides for all languages
Open SourceGet instant help with integration and troubleshooting
24/7 AvailableComplete API reference with examples and schemas
InteractiveReal-time API status, uptime metrics, and incident reports
LiveProduction-ready examples from basic calls to advanced trading bots
Get a single prediction for any crypto
// Basic prediction request
const response = await fetch('https://api.pearlixa.com/api/v1/predictions/single', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
symbol: 'BTC/USDC',
horizon: 'short'
})
});
const data = await response.json();
console.log(`${data.symbol}: ${data.action} (${(data.confidence * 100).toFixed(1)}%)`);
console.log(`Entry: $${data.entry}, Target: $${data.target}`);