Complete guides, tutorials, and references to help you integrate and use Oracode's AI-powered predictions
Create an account and choose your subscription plan
Generate your API key from the dashboard
Send your first API request to get predictions
Build your application with our predictions
// JavaScript Example
const response = await fetch('https://api.oracode.ai/v1/predictions/BTC', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const prediction = await response.json();
console.log(`BTC Prediction: $${prediction.prediction.price}`);
console.log(`Confidence: ${prediction.prediction.confidence * 100}%`);
Our support team is here to help you integrate Oracode successfully