Mixpeek Logo
    Schedule Demo
    PDF

    Legal Clause Extraction

    Identify and extract legal clauses and provisions from contracts

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter a URL to a pdf file

    Drag and drop a pdf file here, or click to browse

    Types of legal clauses to detect. Default: confidentiality,termination,indemnification,governing_law

    Whether to perform risk assessment on clauses. Default: true

    Output

    {
    "clauses": [
    {
    "type": "confidentiality",
    "pages": [
    3
    ],
    "text": "Each party agrees to maintain the confidentiality of all proprietary information...",
    "risk_assessment": "standard",
    "duration": "5 years"
    },
    {
    "type": "termination",
    "pages": [
    8
    ],
    "text": "This agreement may be terminated by either party with 30 days written notice...",
    "risk_assessment": "low",
    "trigger_conditions": [
    "written notice",
    "material breach"
    ]
    }
    ],
    "document_type": "service_agreement",
    "governing_law": "State of Delaware",
    "parties": [
    "Company XYZ",
    "Vendor ABC"
    ]
    }