Legistry AI Documentation
Build with Legistry AI
Everything you need to integrate AI-powered legal operations into your product — contracts, signatures, compliance, and more.
Platform APIs
Quick Start
# 1. Authenticate
curl -X POST https://api.legistry.ai/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "you@company.com", "password": "..."}'
# 2. Create a contract
curl -X POST https://api.legistry.ai/api/v1/contracts \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title": "NDA - Acme Corp", "type": "nda"}'