Compliance, contracts & regulations
Legal and compliance APIs for contract analysis, regulatory compliance, and legal document processing.
Extract key terms from contracts. Identify parties, obligations, dates, and important clauses automatically.
POST /api/v1/legal/contract-analysis
{ "document": "base64_encoded_pdf",
"analysis_type": "full" }
// Response
{ "parties": ["Acme Corp", "Client LLC"],
"effective_date": "2025-01-15",
"termination_date": "2026-01-15",
"key_clauses": ["indemnification",
"non-compete", "confidentiality"],
"obligations": [...] }
Check content for regulatory compliance. Support for GDPR, CCPA, HIPAA, and other major frameworks.
POST /api/v1/legal/compliance-check
{ "content": "Your policy text...",
"frameworks": ["GDPR", "CCPA"] }
// Response
{ "compliant": false,
"score": 72,
"issues": [
{ "framework": "GDPR",
"issue": "Missing data retention",
"severity": "high" }],
"recommendations": [...] }
Get legal entity information. Retrieve LEI codes, registration details, and corporate structure data.
POST /api/v1/legal/entity-lookup
{ "name": "Acme Corporation",
"jurisdiction": "US-DE" }
// Response
{ "lei": "5493001KJTIIGC8Y1R12",
"legal_name": "Acme Corporation Inc.",
"status": "active",
"registered_address": {...},
"incorporation_date": "2010-03-15",
"entity_type": "corporation" }
Extract terms and conditions from documents. Parse T&Cs, privacy policies, and user agreements.
POST /api/v1/legal/terms-extraction
{ "url": "https://example.com/terms",
"extract": ["data_usage", "liability"] }
// Response
{ "document_type": "terms_of_service",
"sections": {
"data_usage": "User data may be...",
"liability": "Limited to fees paid",
"termination": "30 days notice" },
"risk_flags": ["broad_license"] }
Screen against global sanctions lists. Check OFAC, UN, EU, and other international sanctions databases.
POST /api/v1/legal/sanction-screening
{ "name": "John Smith",
"country": "US",
"dob": "1980-05-15" }
// Response
{ "screened": true,
"match_found": false,
"lists_checked": ["OFAC_SDN", "UN_SC",
"EU_SANCTIONS", "UK_HMT"],
"confidence": 0.98,
"screening_date": "2025-01-15" }
Get your API key and start automating legal workflows in minutes.