Get case detail by CNR
curl --request GET \
--url https://webapi.ecourtsindia.com/api/partner/case/{cnr} \
--header 'Authorization: Bearer <token>'import requests
url = "https://webapi.ecourtsindia.com/api/partner/case/{cnr}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://webapi.ecourtsindia.com/api/partner/case/{cnr}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://webapi.ecourtsindia.com/api/partner/case/{cnr}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://webapi.ecourtsindia.com/api/partner/case/{cnr}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://webapi.ecourtsindia.com/api/partner/case/{cnr}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://webapi.ecourtsindia.com/api/partner/case/{cnr}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"courtCaseData": {
"cnr": "MHAM030085272025",
"caseType": "DV",
"caseStatus": "DISPOSED",
"courtName": "CHIEF JUDICIAL MAGISTRATE COURT",
"district": "Amravati",
"state": "MH",
"filingNumber": "8553/2025",
"filingDate": "2025-09-03",
"registrationNumber": "68/2025",
"decisionDate": "2025-11-11",
"disposalType": "WITHDRAWN",
"judges": [
"2nd JT. C.J.J.D. J.M.F.C. AMRAVATI"
],
"petitioners": [
"Shraddha Virendra Vora",
"Yashank Virendra Vora"
],
"respondents": [
"Virendra Pravinchand Vora"
],
"hasOrders": true,
"orderCount": 1,
"judgmentOrders": [
{
"orderDate": "2025-11-11",
"orderType": "Order on Exhibit",
"orderUrl": "order-1.pdf"
}
]
},
"entityInfo": {
"cnr": "MHAM030085272025",
"dateModified": "2026-06-04T21:31:45.884045Z"
},
"files": {
"files": [
{
"pdfFile": "MHAM030085272025-order-1.pdf",
"markdownFile": "MHAM030085272025-order-1.md",
"markdownContent": "## Order below Exh.1 ... disposed off in view of pursis at Exh.06.",
"aiAnalysis": null
}
]
}
},
"meta": {
"request_id": "400149e6-0012-e700-b63f-84710c7967bb"
}
}{
"error": {
"code": "INVALID_TOKEN",
"message": "Authorization token missing the 'Bearer ' prefix, malformed, or rotated."
},
"meta": {
"request_id": "4000aa11-0001-2200-b63f-84710c7967bb"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "No case found for the given CNR."
},
"meta": {
"request_id": "4000aa12-0002-3300-b63f-84710c7967bb"
}
}Cases
Get case detail by CNR
Full record: parties, advocates, judges, hearings, IAs, orders. Order text is embedded in files.files[].markdownContent.
GET
/
api
/
partner
/
case
/
{cnr}
Get case detail by CNR
curl --request GET \
--url https://webapi.ecourtsindia.com/api/partner/case/{cnr} \
--header 'Authorization: Bearer <token>'import requests
url = "https://webapi.ecourtsindia.com/api/partner/case/{cnr}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://webapi.ecourtsindia.com/api/partner/case/{cnr}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://webapi.ecourtsindia.com/api/partner/case/{cnr}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://webapi.ecourtsindia.com/api/partner/case/{cnr}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://webapi.ecourtsindia.com/api/partner/case/{cnr}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://webapi.ecourtsindia.com/api/partner/case/{cnr}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"courtCaseData": {
"cnr": "MHAM030085272025",
"caseType": "DV",
"caseStatus": "DISPOSED",
"courtName": "CHIEF JUDICIAL MAGISTRATE COURT",
"district": "Amravati",
"state": "MH",
"filingNumber": "8553/2025",
"filingDate": "2025-09-03",
"registrationNumber": "68/2025",
"decisionDate": "2025-11-11",
"disposalType": "WITHDRAWN",
"judges": [
"2nd JT. C.J.J.D. J.M.F.C. AMRAVATI"
],
"petitioners": [
"Shraddha Virendra Vora",
"Yashank Virendra Vora"
],
"respondents": [
"Virendra Pravinchand Vora"
],
"hasOrders": true,
"orderCount": 1,
"judgmentOrders": [
{
"orderDate": "2025-11-11",
"orderType": "Order on Exhibit",
"orderUrl": "order-1.pdf"
}
]
},
"entityInfo": {
"cnr": "MHAM030085272025",
"dateModified": "2026-06-04T21:31:45.884045Z"
},
"files": {
"files": [
{
"pdfFile": "MHAM030085272025-order-1.pdf",
"markdownFile": "MHAM030085272025-order-1.md",
"markdownContent": "## Order below Exh.1 ... disposed off in view of pursis at Exh.06.",
"aiAnalysis": null
}
]
}
},
"meta": {
"request_id": "400149e6-0012-e700-b63f-84710c7967bb"
}
}{
"error": {
"code": "INVALID_TOKEN",
"message": "Authorization token missing the 'Bearer ' prefix, malformed, or rotated."
},
"meta": {
"request_id": "4000aa11-0001-2200-b63f-84710c7967bb"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "No case found for the given CNR."
},
"meta": {
"request_id": "4000aa12-0002-3300-b63f-84710c7967bb"
}
}Authorizations
Your API key from https://ecourtsindia.com/dashboard/settings
Path Parameters
16-char CNR
Response
Success
⌘I