API Documentation

We provide a fast and Easy to use API. Give it a try.

The Request

Type - HTTP GET

URL - http://api.ferret.live/getCases.php?fn=<first name>&ln=<last name>&bd=<birthday> in YYYY-MM-DD Format

Ferret Also Supports Wildcards. Use * to take Advantage of Wildcard Search.

Try It live

The Response

Sending an HTTP GET Request to above URL endpoint will respond with a list of cases in json format.

Sample Output in JSON

				[
				  {
					 "firstname":"JOHN",
					 "lastname":"SMITH",
					 "birthdate":"1994-01-01"
					 "case_number":"181911073",
					 "filing_date":"2018-10-19",
					 "state":"UT",
					 "county":"SALT LAKE",
					 "court":"Salt Lake City District"
				  },
				  {
					 "firstname":"JOHN",
					 "lastname":"SMITH",
					 "birthdate":"1994-01-01"
					 "case_number":"201101195",
					 "filing_date":"2020-11-30",
					 "state":"UT",
					 "county":"CACHE",
					 "court":"Logan District"
				  }
				]
				

If no Record is found then the response will be an empty list

[ ]