GET
/
title_analysis
/
{id}
curl --request GET \
  --url https://dev.cardinalgray.com/title_analysis/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "complete",
  "analysis": {
    "title_data": {
      "state": "<string>",
      "number": "<string>",
      "date_of_issue": "<string>",
      "vin": "<string>",
      "year": "<string>",
      "make": "<string>",
      "model": "<string>",
      "body_style": "<string>",
      "odometer": "<string>",
      "fuel_type": "<string>",
      "is_or": true,
      "is_and": true,
      "owners": [
        {
          "customer_id": "<string>",
          "full_name": "<string>",
          "dob": "<string>",
          "dlid": {
            "number": "<string>",
            "state": "AL",
            "sex": "<string>",
            "expiration_date": "<string>",
            "first_name": "<string>",
            "middle_name": "<string>",
            "last_name": "<string>",
            "addr": {
              "recipient_name": "<string>",
              "street1": "<string>",
              "street2": "<string>",
              "city": "<string>",
              "county": "<string>",
              "state": "AL",
              "zip": "<string>"
            }
          },
          "ssn": "<string>",
          "addr": {
            "recipient_name": "<string>",
            "street1": "<string>",
            "street2": "<string>",
            "city": "<string>",
            "county": "<string>",
            "state": "AL",
            "zip": "<string>"
          },
          "addr_mailing": {
            "recipient_name": "<string>",
            "street1": "<string>",
            "street2": "<string>",
            "city": "<string>",
            "county": "<string>",
            "state": "AL",
            "zip": "<string>"
          },
          "contact_phone": "<string>",
          "contact_email": "<string>",
          "insurance": {
            "provider_name": "<string>",
            "provider_naic": "<string>",
            "policy_number": "<string>"
          },
          "ownership_type": "<string>"
        }
      ],
      "liens": [
        {
          "lienholder_name": "<string>",
          "lienholder_address": {
            "recipient_name": "<string>",
            "street1": "<string>",
            "street2": "<string>",
            "city": "<string>",
            "county": "<string>",
            "state": "AL",
            "zip": "<string>"
          },
          "lien_date": "<string>",
          "lien_satisfied_date": "<string>"
        }
      ]
    },
    "nmvtis_data": {
      "record_match_sequence_id": "<string>",
      "title_issue_date": "<string>",
      "title_issuing_authority_name": "<string>",
      "vehicle_identification": "<string>",
      "vehicle_odometer_reading_measure": "<string>"
    },
    "is_match": {
      "owner": true,
      "vin": true,
      "issue_date": true,
      "state": true
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Unique identifier for the title analysis task

Response

200
application/json
Analysis complete, returns digest of the title and vehicle info
id
string

Unique identifier for the task

status
enum<string>

Current status of the task

Available options:
complete,
pending,
failure
analysis
object

Results of the title analysis.