Skip to main content

Getting Started with BrainPredict Legal

Get up and running with BrainPredict Legal in minutes. This guide will walk you through account setup, API integration, and your first AI-powered legal analysis.

Step 1: Create Your Account

Sign up for BrainPredict Legal and choose your subscription tier:

  • Starter (): 1-10 licenses, all 31 AI models, 100% of features, Intelligence Bus integration
  • Professional (): 11-25 licenses, all 31 AI models, 100% of features, Intelligence Bus integration
  • Enterprise (): 26-50 licenses, all 31 AI models, 100% of features, Intelligence Bus integration
  • Custom (51+ licenses): Contact sales for custom pricing, volume discounts, dedicated account manager
Start 14-Day Free Trial →

Step 2: Get Your API Key

After signing up, navigate to your dashboard to generate your API key:

  1. 1. Go to Settings → API Keys
  2. 2. Click "Generate New API Key"
  3. 3. Copy your API key (starts with bp_legal_live_)
  4. 4. Store it securely - you won't be able to see it again

Security Note: Never commit your API key to version control or share it publicly.

Step 3: Install the SDK

Install the BrainPredict Legal SDK for your programming language:

Python

pip install brainpredict-legal

Node.js

npm install @brainpredict/legal

Java

mvn install brainpredict-legal

Step 4: Make Your First API Call

Let's analyze a contract using the Contract Analyzer AI model:

from brainpredict import LegalClient

# Initialize client
client = LegalClient(api_key="bp_legal_live_your_api_key_here")

# Analyze a contract
result = client.contract_analyzer.analyze({
    "contract_text": "This Agreement is entered into...",
    "contract_type": "NDA",
    "jurisdiction": "California"
})

# View results
print(f"Risk Score: {result['risk_score']}")
print(f"Key Clauses: {result['key_clauses']}")
print(f"Missing Clauses: {result['missing_clauses']}")
print(f"Recommendations: {result['recommendations']}")

You should receive a response with contract analysis, risk assessment, and recommendations within 2-3 seconds.

Step 5: Connect Your Legal Management System

Integrate BrainPredict Legal with your existing legal management system:

  • LexisNexis: Sync legal research and case law
  • Westlaw: Integrate legal research and analytics
  • Clio: Connect practice management and billing
  • NetDocuments: Sync document management
  • iManage: Integrate document and email management
View Integration Guides →

Next Steps

Explore AI Models

Discover all 31 AI models for contract analysis, legal research, compliance, and litigation support.

View AI Models →

Read API Documentation

Learn about all available endpoints, parameters, and response formats.

View API Reference →

Learn Best Practices

Get expert recommendations for maximizing legal efficiency and ROI.

View Best Practices →