v1

latestOpenAPI 3.1.02026-07-241695611.0 MB
People

Get Person

get/people/{id}

Path parameters

idstring uuid required

Response

Successful Response

idstring uuid required

The unique identifier of the person

first_namestring required

The first name of the person

last_namestring required

The last name of the person

ssnstring required

The social security number of the person

middle_namestring nullable

The middle name of the person

phone_numberstring nullable

The phone number of the person in E164 format

emailstring nullable

The email address of the person

date_of_birthstring date nullable

The date of birth of the person

gender'M' | 'F'
marital_status'married' | 'single' | 'divorced' | 'widowed' | 'separated' | 'domestic_partner' | 'civil_union' | 'other'
suffixstring nullable

The suffix of the person

titlestring nullable

The title of the person

created_atstring date-time required

When the person record was created

updated_atstring date-time nullable

When the person record was last updated

Example response

{
  "id": "8e3b7f77-2799-4931-a322-9f80cc67eebe",
  "first_name": "John",
  "last_name": "Doe",
  "ssn": "XXXXX1234",
  "middle_name": "Michael",
  "phone_number": "+17075489914",
  "email": "johndoe@example.com",
  "date_of_birth": "1990-01-15",
  "suffix": "Jr.",
  "title": "Mr.",
  "created_at": "2025-01-15T12:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z",
  "dockets": [
    {
      "docket_number": "A19284",
      "court": "Supreme Court of Orange County",
      "division": "Civil Court Division",
      "judges": [
        "Honorable Paul Shaw"
      ],
      "title": "Doe v. City of New York",
      "case_type": "Civil",
      "status": "Pending",
      "parties": [
        {
          "party_type": "Complaintant",
          "counsel": [
            "Robin Keller"
          ]
        }
      ],
      "updates": [
        {
          "title": "Update 2",
          "contents": "New details about the case.",
          "date": "2024-06-01",
          "exhibits": [
            {
              "title": "Exhibit 1A"
            }
          ]
        }
      ]
    }
  ],
  "liens": [
    {
      "filing_number": "P98172",
      "filing_type": "Lien for Loan Default",
      "filing_date": "2023-09-18",
      "lapse_date": "2023-04-15",
      "status": "Under Appeal",
      "number_of_pages": 14,
      "document_filename": "docket_47182.pdf",
      "parties": [
        {
          "name": "Louis Schneider",
          "address": {
            "street": "913 Hendrix Gardens Suite 492",
            "city": "Jasonfurt",
            "zip": "19773",
            "latitude": 38.03012,
            "longitude": 78.47665
          },
          "type": "individual"
        }
      ],
      "amendments": [
        {
          "filing_number": "H76162",
          "filing_type": "Notarized Letter",
          "filing_date": "2023-11-27",
          "number_of_pages": 4
        }
      ],
      "collateral_statements": [
        {
          "text": "2022 Blue Honda Civic"
        }
      ]
    }
  ],
  "watchlist_hits": [
    {
      "code": "DMF",
      "count": 1,
      "details": [
        {
          "address": "123 Main St",
          "date_of_birth": "1980-01-01",
          "name": "John Doe"
        }
      ]
    }
  ]
}