Reference
API Reference
REST API for integrating Undwrlyft review into your DMS or matter management workflow.
API key authentication — per-firm scope
REST / JSON — standard HTTP methods
Practice Group plan required for API access
Endpoints
Base URL: https://api.undwrlyft.com
POST
/v1/packages
Submit a new document package for review. Returns a package ID.
{
"playbook_id": "pb_01jx...",
"matter_name": "Hartwell Acquisition",
"documents": ["https://..."]
}
GET
/v1/packages/{id}
Get the status and metadata of a package. Status: queued | processing | complete | error.
GET
/v1/packages/{id}/brief
Retrieve the flagged brief for a completed package. Returns structured JSON with clause flags, risk levels, and excerpts.
GET
/v1/playbooks
List all playbooks configured for your firm. Returns playbook IDs and names.
POST
/v1/export/{id}
Export a brief to Word (.docx) or push to a connected DMS. Specify format and destination in request body.
{
"format": "docx",
"destination": "dms:imanage"
}