Contracts
Learn how to create, manage, and track contracts using Parley
Creating Contracts
Parley simplifies contract creation with AI-powered templates and guided workflows. Start by selecting a template that matches your use case, then customize it with your specific terms and parties.
Choose Template
Select from pre-built templates for NDAs, service agreements, or custom contracts.
Add Parties
Specify all parties involved and their contact information.
Customize Terms
Modify clauses as needed with AI suggestions for clarity and fairness.
Review & Send
Get risk assessment and send for negotiation.
const nda = await parley.createContract({
template: 'nda',
confidentiality: 'standard',
duration: '2 years'
});
const service = await parley.createContract({
template: 'service-agreement',
services: ['consulting', 'development'],
payment: 'monthly'
});
Managing Contracts
Track the status of all your contracts in one dashboard. Parley provides real-time updates on negotiation progress, signature status, and renewal dates.
Monitor drafts, negotiations, and signed agreements with automated notifications.
const contracts = await parley.listContracts({
status: 'active',
limit: 50
});
curl -X GET "https://api.parley.ai/contracts?status=active&limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"
Contract Analytics
Gain insights into your contract portfolio with Parley's analytics dashboard. Identify trends, track performance, and optimize your contracting process.
| Metric | Description | Target |
|---|---|---|
| Cycle Time | Days from draft to signature | <30 days |
| Negotiation Rounds | Average rounds per contract | <=3 |
| Risk Score | AI-assessed risk level | Low |