← Back to Cases

Submit a Legal Case

Submit your case and let India's legal community vote on who's right.

💡 Use AI to prepare your summaries

Paste your legal documents into ChatGPT or Claude with the prompt below to get a structured, privacy-safe case summary you can paste into the form.

⚠️ Your Responsibility Notice
  • You are solely responsible for the content you submit. This platform and its operators accept no liability.
  • Ensure you have the right to share this case information. Do not submit content covered by court confidentiality orders.
  • Use the AI prompt above to remove all personal data before pasting your summaries.
  • If you share a document link, use view-only links with restricted sharing.

📋 Case Information

A clear, descriptive title. Admin may refine this before publishing.

⚖️ Claimant / Plaintiff

Google Drive, Dropbox, etc.
0 / 20000 chars (min 100)

🛡️ Respondent / Defendant

0 / 20000 chars (min 100)

📧 Your Details

Not published. Only used by admin for case clarifications.
✓ Logged in as . By submitting you confirm all personal data has been anonymised and you accept our Terms of Use.
// Char counters for summary textareas const cSummary = document.querySelector('textarea[name="claimant_summary"]'); const rSummary = document.querySelector('textarea[name="respondent_summary"]'); if(cSummary) { cSummary.addEventListener('input', function(){ var el = document.getElementById('c-chars-used'); if(el) el.textContent = this.value.length; }); } if(rSummary) { rSummary.addEventListener('input', function(){ var el = document.getElementById('r-chars-used'); if(el) el.textContent = this.value.length; }); }