• Camera Scanning
  • ID Parsing
  • DIVE
  • Web Services
  • Third Party Checks
  • Authentication
IDScan.net
  • Third Party Checks
  • Criminal Background Check
Search Results for

    Show / Hide Table of Contents
    • Introduction
      • Web Portal
      • Billing Policy
      • Multiple Services Concurrently
      • Common Errors
    • Third Party Checks
      • DMV Data Verification
        • DMV Service Status
        • Test Cases
        • Errors
      • Identifraud
        • Data Sources
        • Identifraud Response
        • Scoring Explained
        • KBA Questions
        • Result Codes
        • Test Cases
        • Errors
      • Sex Offender Registry
        • FAQ
        • Test Cases
        • Errors
      • Criminal Background Check
        • Test Cases
        • Errors
      • PEP
        • Test Cases
      • OFAC
        • Test Cases
      • Every Politician
        • Test Cases
      • Custom List
        • Test Cases
      • Swagger UI

    Criminal Background Check

    The Nationwide Criminal Records Database is a powerful, high-speed multi-state and federal search of our proprietary databases compiled from multiple sources consisting of court records, incarceration records, prison/inmate records, probation/parole/release information, arrest data, wants and warrants and/or other proprietary sources.

    Disclaimer: IDScan.net's mission is to give people easy and affordable access to public record information, but IDScan.net does not provide private investigator services or consumer reports, and is not a consumer reporting agency per the Fair Credit Reporting Act. You may not use our service or the information provided to make decisions about employment, admission, consumer credit, insurance, tenant screening or any other purpose that would require FCRA compliance.

    Example Request

    Send POST request with CURL

    curl -X POST https://screening.idware.net/api/Check -H "Content-Type: application/json" -H "Authorization: Bearer {token}" -d "{ \"firstName\": \"JANE\", \"lastName\": \"DOE\", \"dateOfBirths\": \"1960-01-31\", \"services\": [ \"80C1111D-6ACE-4820-A88C-284982013C33\" ]}"
    

    Example data

    Request:

    POST /api/Check

    With header "Authorization: Bearer {token}"

    {
      "firstName": "string",
      "middleName": "string",
      "lastName": "string",
      "dateOfBirths": "2021-09-27",
      "sex": "string",
      "address": "string",
      "addressLine2": "string",
      "city": "string",
      "county": "string",
      "state": "string",
      "zip": "string",
      "ssn": "string", 
      "services": [
        "80c1111d-6ace-4820-a88c-284982013c33"
      ],
      "idType": "string",
      "idNumber": "string",
      "driverLicenseNumber": "string",
      "documentCategoryCode": 0,
      "driverLicenseIssueDate": "2021-09-27",
      "driverLicenseExpirationDate": "2021-09-27",
      "referenceId": "string",
      "metadata": {
        "additionalProp1": "string",
        "additionalProp2": "string",
        "additionalProp3": "string"
      },
      "emailAddress": "user@example.com",
      "phone": {
        "phoneNumber": "string",
        "sendPhoneVerification": true,
        "forceVerificationByCall": true
      },
      "locationId": 0,
      "readOnlyAccessLocationIds": [
        0
      ]
    }
    
    

    Request Fields

    Field Name Required Fields for Criminal Records Service
    "firstName" Required
    "lastName" Required
    "dateOfBirths" Required

    Field "services" is an array of one or more ID's for each specific service. To run the the Criminal Records Service on the data submitted to the web service inlcude the following value - "80C1111D-6ACE-4820-A88C-284982013C33". For sending a request to multiple services, please see details

    Results of the Criminal Records Service check will be shown (if person was found) in the "Profiles" and "Offenses" fields in the response.

    Important

    When the "services" field is null or is an empty array all the services your account has enabled will run. We do not recommend submitting request in this way. We recommend being explicit about which services you would like to run.

    Response

    [
      {
        "serviceId": "80c1111d-6ace-4820-a88c-284982013c33",
        "serviceName": "Criminal Records",
        "serviceDescription": "The Criminal Records Database is a powerful, high-speed multi-state and federal search of our proprietary databases compiled from multiple sources consisting of court records, incarceration records, prison/inmate records, probation/parole/release information, arrest data, wants and warrants and/or other proprietary sources.",
        "error": null,
        "success": true,
        "locationId": 0,
        "readOnlyAccessLocationIds": [
          0
        ],
        "profiles": [
          {
            "internalId": "2006015680TESTTESTJOHNDOE111960",
            "firstName": "JOHN",
            "middleName": "R",
            "lastName": "DOE",
            "fullName": null,
            "dateOfBirths": "01/31/1960",
            "sex": "Male",
            "address": null,
            "countryName": null,
            "countryCode": null,
            "street1": null,
            "street2": null,
            "city": null,
            "state": null,
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": [
              {
                "fullName": "JOHN SAMPLE",
                "firstName": "JOHN",
                "middleName": "R",
                "lastName": "SAMPLE"
              }
            ],
            "offenses": [
              {
                "title": "Not Specified",
                "class": null,
                "code": null,
                "section": null,
                "description": "First-degree driving while impaired.",
                "caseNumber": "1984CR 042193",
                "jurisdiction": "Indian River",
                "ageOfVictim": null,
                "admissionDate": null,
                "arrestingAgency": "Statute: U.",
                "category": null,
                "chargeFilingDate": null,
                "closedDate": null,
                "counts": null,
                "court": "CR",
                "dateConvicted": null,
                "dateOfCrime": null,
                "dateOfWarrant": "01/01/1989",
                "disposition": "CONV-310-Convicted",
                "dispositionDate": "12/12/1991",
                "facility": null,
                "prisonerNumber": null,
                "relationshipToVictim": null,
                "releaseDate": null,
                "sentence": null,
                "sentenceDate": null,
                "sexOfVictim": null,
                "subsection": null,
                "warrantDate": null,
                "warrantNumber": null,
                "weaponsUsed": null
              }
            ],
            "photoUrl": null,
            "source": null,
            "otherInformation": null,
            "idNumber": null,
            "verificationResult": null,
            "driverLicenseVerificationResult": null
          }
        ]
      }
    ]
    
    In This Article
    • Example Request
    • Example data
    • Request Fields
    Back to top IDScan.net IDScan.net GitHub