KellPro API Reference Guide

api.kellpro.com/v2

GET odcr/case

Returns the basic details about a specified case. This resource includes references to the offenses, people and activities.

This resource will only return one case at a time. To query for cases you can use the search resource.

Resource URL

https://api.kellpro.com/v2/odcr/case.format

Parameters

casekey

Specifies the unique key assigned to the case. The case key is a text identifier made up of the court code, case type, case year & case number.

Example: 019BCM  0300210

Example Request

GET https://api.kellpro.com/v2/odcr/case.json?casekey=019BCM++0300210

{
	"court":{
		"reference":"https://api.kellpro.com/v2/odcr/courts?code=019B"
	},
	"style":"STATE OF OKLAHOMA VS. SMITH, JOHN DAVID",
	"category":"CR",
	"caseType":"CM",
	"caseYear":"03",
	"caseNumber":"00210",
	"filedDate":"2003-06-18",
	"friendlyCaseType":"Criminal Misdemeanor Proceedings",
	"fee":924,
	"amountPayed":250,
	"amountDisbursed":0,
	"amountOwed":674,
	"disposition":"Pending Deferred",
	"offenses":{
		"reference":"https://api.kellpro.com/v2/odcr/offenses?casekey=019BCM++0300210"
	},
	"dispositions":{
		"reference":"https://api.kellpro.com/v2/odcr/dispositions?casekey=019BCM++0300210"
	},
	"people":{
		"reference":"https://api.kellpro.com/v2/odcr/people?casekey=019BCM++0300210"
	},
	"activities":{
		"reference":"https://api.kellpro.com/v2/odcr/activities?casekey=019BCM++0300210"
	}
}