KellPro API Reference Guide

api.kellpro.com/v2

GET odcr/people

Returns the parties involved for a specific case.

This resource will return all of the parties involved, including any agencies, attorneys, officers and judges involved in the case proceedings.

Resource URL

https://api.kellpro.com/v2/odcr/people.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

types Optional

Specifies a pipe "|" delimited list of the types of party to return.

Example: Plaintiff|Defendant|Attorney

Example Request

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

[
	{
		"name":"SMITH, JOHN DAVID",
		"type":"Defendant",
		"city":"TULSA",
		"state":"OK",
		"zip":"74105",
		"dob":"1975-01",
		"outstandingWarrant":false
	},
	{
		"name":"OK HIGHWAY PATROL",
		"type":"Agency",
		"city":"STROUD",
		"state":"OK",
		"zip":"74079",
		"dob":null,
		"outstandingWarrant":false
	},
	{
		"name":"WOOLERY, RICHARD",
		"type":"Judge",
		"city":"SAPULPA",
		"state":"OK",
		"zip":"74066",
		"dob":null,
		"outstandingWarrant":false
	},
	{
		"name":"KELLEY #727, DAVID",
		"type":"Officer",
		"city":"",
		"state":"",
		"zip":"",
		"dob":null,
		"outstandingWarrant":false
	},
	{
		"name":"NELSON, DON I.",
		"type":"DA",
		"city":"BRISTOW",
		"state":"OK",
		"zip":"74010",
		"dob":null,
		"outstandingWarrant":false
	}
]