Getting Started with BrainPredict Finance
Get up and running with BrainPredict Finance in just 10 minutes. This guide covers account setup, API integration, and your first AI-powered financial prediction.
Step 1: Create Your Account
Sign up at brainpredict.ai/signup and choose your plan:
- Starter (): 1-10 licenses, all 35 AI models, 100% of features, Intelligence Bus integration
- Professional (): 11-25 licenses, all 35 AI models, 100% of features, Intelligence Bus integration
- Enterprise (): 26-50 licenses, all 35 AI models, 100% of features, Intelligence Bus integration
- Custom (51+ licenses): Contact sales for custom pricing, volume discounts, dedicated account manager
All plans include a Custom quote for your specific needs. Payment method required (credit card, SEPA, or bank transfer).
Step 2: Get Your API Key
Navigate to Portal → Settings → API Keys and generate a new key:
# Your API key will look like this: bp_finance_live_1234567890abcdef1234567890abcdef # Keep it secure - never commit to version control!
Step 3: Install SDK
Install the BrainPredict Finance SDK in your preferred language:
# Python pip install brainpredict-finance # Node.js npm install @brainpredict/finance # Java mvn install brainpredict-finance # PHP composer require brainpredict/finance
Step 4: Make Your First API Call
Let's forecast cash flow using the Cash Flow Forecaster AI model:
# Python
from brainpredict import FinanceClient
client = FinanceClient(api_key="bp_finance_live_xxx")
# Forecast cash flow for next 12 months
forecast = client.cash_flow.forecast(
current_balance=12500000,
historical_months=24,
forecast_months=12
)
print(f"Forecast Accuracy: {forecast.accuracy}%")
print(f"Projected Balance (12M): €{forecast.balance_12m:,.0f}")
print(f"Cash Flow Trend: {forecast.trend}")
# Output:
# Forecast Accuracy: 96.8%
# Projected Balance (12M): €15,400,000
# Cash Flow Trend: positiveStep 5: Connect Your ERP System
Integrate with your existing ERP for seamless data sync:
# Connect to SAP S/4HANA
client.integrations.connect(
platform="sap_s4hana",
host="your-sap-host.com",
client="100",
username="your_username",
password="your_password"
)
# Sync GL transactions automatically
transactions = client.gl.sync_from_erp()
print(f"Synced {len(transactions)} transactions from SAP")
# Run AI-powered GL automation
results = client.gl.automate_journal_entries()
print(f"Automated {results.entries_created} journal entries")
print(f"Accuracy: {results.accuracy}%")Step 6: Explore AI Models
BrainPredict Finance includes 35 specialized AI models. Here are some popular ones:
- •GL Automation Engine: Automate journal entries with 98.5% accuracy
- •Cash Flow Forecaster: Predict cash positions 12-18 months ahead (96.8% accuracy)
- •Budget Optimizer: AI-driven budget planning and variance analysis
- •Fraud Detection Engine: Real-time fraud detection (94.7% accuracy)
- •Revenue Recognition Engine: Automated ASC 606 compliance (99.1% accuracy)
View AI Models Documentation for complete details.
Next Steps
- →Explore ERP Integrations for SAP, Oracle, NetSuite, and more
- →Review API Reference for all 85+ endpoints
- →Check out Use Cases for real-world examples
- →Read Best Practices for optimization tips
Need Help?
Our support team is available 24/7 to help you get started:
- Email: support@brainpredict.ai
- Chat: Available in the bottom-right corner
- Phone: +372 123 4567 (Enterprise plans)
- Documentation: docs.brainpredict.ai