Accessing Litigation

The Litigation dataset is available through the /v1/seller-detailed endpoint. It is a part of the larger Detailed Seller Report payload. This dataset is a subscription-based add-on and will only return results if your account is enabled for it.

When enabled, Litigation records are discovered dynamically based on the inquiries you submit in your request payload. This means the API surfaces potential matches tied to the identifying information you provide, such as legal business name, DBA, address, etc.

Sample Response

{
  "request_id": "uuid",
  "seller_id": uuid,
  "dashboard_url": "string",
  "seller":         {},
  "principals": [{}],
  "furnished_sources": [{...}],
  "public_sources": [{...}],
  "third_party_sources": [{...}],
  "regulatory_complaint_details": [{...}],
  "feature_store": {...},
  "public_reviews": {...
  },
  "doctors": [{...}],
  "scores": [{...}],
  "vRisk": [{...}],
  "scorecard_score": {...},
  "ThirdPartyData": [{...}],
  "parents": [{...}],
  "children": [{...}],
  "siblings": [{...}],
  "related_sellers": [{...}],
  "flagged_related_sellers": [{...}],
  "total_inquiry_count": number,
  "inquiry_history": [{...}],
  "secretary_of_state": [{...}],
  "blj": [{...}],
  "possible_secretary_of_state": [{...}],
  "possible_blj": [{...}],
  "litigation": {
    "dockets": [
      {
        "docket_number": "string",
        "docket_type": "string",
        "case_title": "string",
        "court_name": "string",
        "court_level": "string",
        "jurisdiction": "string",
        "filing_date": "2019-08-24",
        "status": "string",
        "status_date": "2019-08-24",
        "plaintiffs": [
          {
            "property1": "string",
            "property2": "string"
          }
        ],
        "defendants": [
          {
            "property1": "string",
            "property2": "string"
          }
        ],
        "entry_count": 0,
        "latest_entry_date": "2019-08-24",
        "close_date": "2019-08-24",
        "full_docket_available": false,
        "docket_id": "string",
        "summary": "string"
      }
    ],
    "lawsuits": [
      {
        "case_number": "string",
        "case_title": "string",
        "court_name": "string",
        "court_state": "string",
        "filing_date": "2019-08-24",
        "status": "string",
        "status_date": "2019-08-24",
        "nature_of_suit": "string",
        "cause_of_action": "string",
        "plaintiffs": [
          "string"
        ],
        "defendants": [
          "string"
        ],
        "jury_demand": true,
        "demand_amount": 0,
        "disposition": "string",
        "disposition_date": "2019-08-24",
        "last_update_date": "2019-08-24",
        "lawsuit_id": "string",
        "summary": "string"
      }
    ],
    "criminal_records": [
      {
        "case_number": "string",
        "court_name": "string",
        "court_state": "string",
        "court_county": "string",
        "filing_date": "2019-08-24",
        "charges": [
          {
            "property1": "string",
            "property2": "string"
          }
        ],
        "offense_date": "2019-08-24",
        "offense_description": "string",
        "disposition": "string",
        "disposition_date": "2019-08-24",
        "sentence": "string",
        "status": "string",
        "severity_level": "string",
        "criminal_id": "string",
        "summary": "string"
      }
    ]
  },
  "pdf_url": "",
  "license_verification_orders": [],
  "adverse_media": {...}
}

If your subscription does not include Litigation, the response will omit this sections. To confirm access, please contact your account manager.

Last updated