API Test Cases (v4.1 & v5)

These Site Id and Identity Id value combinations may be used for testing API calls to the NeuroID environment.

📘

Test cases may require you to construct an incomplete or incorrect call. The examples below are provided to assist you in authoring your own tests. These examples include comments and formatting that may prevent you from copying them as written to your terminal.

👍

Try It!

To access the API, you must use a valid API Key available in the NeuroID Portal by navigating to Settings > API Keys.

Responses

NeuroID has provided two siteId values which correspond to a particular product offering. The signals block in the API response consists of an array of signals, each with the following fields:

  • form_neuro100 is configured to return a signals block consisting of model and label only. This form represents an onboarding form with behavior signals.
  • form_neuro200 is configured to return a signals block consisting of model, label, attributes, and score. This form represents an onboarding form with behavior signals.
  • form_neuro300 is configured to return a signals block consisting of model, label, and score. This form represents a login form with behavior signals, so the response contains the session_login_fraud_ring_indicator, session_login_automated behavioral_analytics_recognition, remote_access, and ato_risk signals.
  • form_neuro400 is configured to return a signals block consisting of model, label, attributes, and score. This form represents an onboarding form with both behavior and device signals.
  • form_neuro500 is configured to return a signals block consisting of model, label, attributes, and score. This form represents a login form with both behavior and device signals.

A set of example responses are provided for each of the following identity values:

  • example-response-1 returns 200 SUCCESS with genuine signals.
  • example-response-2 returns 200 SUCCESS with risky signals.
  • example-response-3 returns 200 SUCCESS, and the response status depends on the site type:
    • Account Onboarding sites (form_neuro100, form_neuro200, and form_neuro400) will receive a response status of NOT_ENOUGH_INTERACTION_DATA indicating insufficient behavioral data. Device signals might be missing or partially present indicating not all device data could be collected from the client.
    • Account Defense sites (form_neuro300, and form_neuro500) will receive a response status of SUCCESS with behavioral model label values of "insufficient data". Device signals might be missing or partially present indicating not all device data could be collected from the client. Additionally, device/network change signals will have an outcome value of null and an error value of "Insufficient data: First observed session for user" indicating that a change calculation could not be made for the session. For example:
      {
        "signal": "device_type_change",
        "outcome": null,
        "attributes": {
          "device_type_count_1_day": 1,
          "device_type_count_1_week": 1,
          "device_type_count_4_week": 1,
          "device_type_count_12_week": 1
        },
        "error": "Insufficient data: First observed session for user"
      },
      
  • example-response-4 returns 200 SUCCESS with neutral signals.
  • example-response-5 returns 200 SITE_NOT_CONFIGURED insufficient data due to lack of configuration.
  • example-response-6 returns 200 SUCCESS, and the response status depends on the site configuration:
    • Sites configured for behavior only signals will receive a risky familiarity signal, but neutral/genuine fraud_ring_indicator and automated_activity signals
    • Sites configured for behavior and device signals will receive a risky familiarity signal, but neutral/genuine fraud_ring_indicator and automated_activity signals for behavior. For device, signals that indicate high risk will have a label of true, and all other device signals will have a label of false.

Request & Response Examples

v4.1

siteId value form_neuro100 on the v4.1 profiles endpoint
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro100",
    "funnel": "unknown",
    "clientId": "example-response-1",
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "high"
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "false"
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "false"
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "genuine"
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false"
      }
    ],
    "id": "example-response-1"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-2 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro100",
    "funnel": "unknown",
    "clientId": "example-response-2",
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "low"
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "true"
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "true"
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "risky"
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false"
      }
    ],
    "id": "example-response-2"
  }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-3 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "NOT_ENOUGH_INTERACTION_DATA",
  "message": "Data has been received for this profile, though some signals may have insufficient data to calculate a result.",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-not_enough_interaction_data",
  "profile": {
    "siteId": "form_neuro100",
    "funnel": "unknown",
    "clientId": "example-response-3",
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "insufficient data"
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "insufficient data"
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "insufficient data"
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "insufficient data"
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false"
      }
    ],
    "id": "example-response-3"
  }
}

// NOTE: a device can be historically risky while not having enough data to
// make decisions on the current session. Therefore, the risky_device model
// label has a value of “false” and not “insufficient data” in this response.
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-4 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro100",
    "funnel": "unknown",
    "clientId": "example-response-4",
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "medium"
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "false"
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "false"
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "neutral"
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false"
      }
    ],
    "id": "example-response-4"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-5 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SITE_NOT_CONFIGURED",
  "message": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-site_not_configured",
  "profile": {
    "siteId": "form_neuro100",
    "funnel": "",
    "clientId": "",
    "signals": null,
    "id": "example-response-5"
  }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-6 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro100",
        "funnel": "unknown",
        "clientId": "example-response-6",
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "low"
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false"
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false"
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "risky"
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false"
            }
        ],
        "id": "example-response-6"
    }
}
siteId value form_neuro200 on the v4.1 profiles endpoint
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro200/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro200",
    "funnel": "unknown",
    "clientId": "example-response-1",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1
    },
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "high",
        "attributes": {
          "other__timing__feature_2": 1,
          "other__timing__feature_1": 0.4711393170142037,
          "other__timing__feature_4": null,
          "other__timing__feature_3": 0.3517169614984391,
          "pii__method_of_entry__feature_3": 0.6,
          "pii__method_of_entry__feature_1": 0,
          "pii__method_of_entry__feature_2": 0,
          "device_type__is_pc": 0,
          "other__typing_patterns__feature_9": null,
          "other__typing_patterns__feature_8": null,
          "other__typing_patterns__feature_7": null,
          "other__typing_patterns__feature_6": null,
          "other__typing_patterns__feature_5": 51.364365971107546,
          "other__typing_patterns__feature_4": 0.48948194662480377,
          "all_text__typing_patterns__feature_2": 0.48948194662480377,
          "all_text__typing_patterns__feature_1": 175.1922488983861,
          "other__typing_patterns__feature_3": 272.9413856490071,
          "other__interaction_patterns__feature_5": null,
          "other__typing_patterns__feature_2": 23.5,
          "other__interaction_patterns__feature_6": null,
          "other__typing_patterns__feature_1": 320.3333333333333,
          "other__interaction_patterns__feature_1": 1,
          "other__interaction_patterns__feature_2": null,
          "other__interaction_patterns__feature_3": null,
          "other__interaction_patterns__feature_4": null,
          "pii__timing__feature_1": 0.783121916842847,
          "pii__timing__feature_2": null,
          "pii__interaction_patterns__feature_5": null,
          "all_text__method_of_entry__feature_1": 6,
          "other__method_of_entry__feature_1": null,
          "pii__interaction_patterns__feature_2": 2,
          "pii__interaction_patterns__feature_1": 0,
          "pii__interaction_patterns__feature_4": 0,
          "all_text__method_of_entry__feature_2": 0,
          "pii__interaction_patterns__feature_3": 0,
          "all_text__method_of_entry__feature_3": 0,
          "pii__typing_patterns__feature_5": 0.5811942230632509,
          "pii__typing_patterns__feature_4": 234.7151656087466,
          "pii__typing_patterns__feature_7": 48.74086108854589,
          "pii__typing_patterns__feature_6": 0.48948194662480377,
          "pii__typing_patterns__feature_9": -0.014812456896697216,
          "pii__typing_patterns__feature_8": 0.0966871369294604,
          "all_text__timing__feature_1": 1.5,
          "other__typing_patterns__feature_11": null,
          "all_text__timing__feature_4": 0,
          "pii__typing_patterns__feature_1": 34,
          "other__typing_patterns__feature_10": null,
          "all_text__timing__feature_5": 0,
          "all_text__timing__feature_2": 1864,
          "pii__typing_patterns__feature_3": 102.25849597955174,
          "all_text__timing__feature_3": 0.2620955039500008,
          "pii__typing_patterns__feature_2": 313.8378732543909,
          "pii__transitions__feature_2": 1,
          "pii__transitions__feature_1": 0
        },
        "score": 97.68
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "genuine",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false",
        "attributes": {
          "risky_application_count": 0
        },
        "score": 0.0
      }
    ],
    "id": "example-response-1"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro200/profiles/example-response-2 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro200",
    "funnel": "unknown",
    "clientId": "example-response-2",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1
    },
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "low",
        "attributes": {
          "other__timing__feature_2": 1,
          "other__timing__feature_1": 0.4711393170142037,
          "other__timing__feature_4": null,
          "other__timing__feature_3": 0.3517169614984391,
          "pii__method_of_entry__feature_3": 0.6,
          "pii__method_of_entry__feature_1": 0,
          "pii__method_of_entry__feature_2": 0,
          "other__typing_patterns__feature_9": null,
          "device_type__is_pc": 0,
          "other__typing_patterns__feature_8": null,
          "other__typing_patterns__feature_7": null,
          "other__typing_patterns__feature_6": null,
          "other__typing_patterns__feature_5": 51.364365971107546,
          "other__typing_patterns__feature_4": 0.48948194662480377,
          "all_text__typing_patterns__feature_2": 0.48948194662480377,
          "all_text__typing_patterns__feature_1": 175.1922488983861,
          "other__interaction_patterns__feature_5": null,
          "other__typing_patterns__feature_3": 272.9413856490071,
          "other__interaction_patterns__feature_6": null,
          "other__typing_patterns__feature_2": 23.5,
          "other__typing_patterns__feature_1": 320.3333333333333,
          "other__interaction_patterns__feature_1": 1,
          "other__interaction_patterns__feature_2": null,
          "other__interaction_patterns__feature_3": null,
          "other__interaction_patterns__feature_4": null,
          "pii__timing__feature_1": 0.783121916842847,
          "pii__timing__feature_2": null,
          "all_text__method_of_entry__feature_1": 6,
          "pii__interaction_patterns__feature_5": null,
          "other__method_of_entry__feature_1": null,
          "pii__interaction_patterns__feature_2": 2,
          "pii__interaction_patterns__feature_1": 0,
          "all_text__method_of_entry__feature_2": 0,
          "pii__interaction_patterns__feature_4": 0,
          "all_text__method_of_entry__feature_3": 0,
          "pii__interaction_patterns__feature_3": 0,
          "pii__typing_patterns__feature_5": 0.5811942230632509,
          "pii__typing_patterns__feature_4": 234.7151656087466,
          "pii__typing_patterns__feature_7": 48.74086108854589,
          "pii__typing_patterns__feature_6": 0.48948194662480377,
          "pii__typing_patterns__feature_9": -0.014812456896697216,
          "pii__typing_patterns__feature_8": 0.0966871369294604,
          "all_text__timing__feature_1": 1.5,
          "other__typing_patterns__feature_11": null,
          "all_text__timing__feature_4": 0,
          "other__typing_patterns__feature_10": null,
          "pii__typing_patterns__feature_1": 34,
          "all_text__timing__feature_5": 0,
          "all_text__timing__feature_2": 1864,
          "pii__typing_patterns__feature_3": 102.25849597955174,
          "all_text__timing__feature_3": 0.2620955039500008,
          "pii__typing_patterns__feature_2": 313.8378732543909,
          "pii__transitions__feature_2": 1,
          "pii__transitions__feature_1": 0
        },
        "score": 97.68
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "true",
        "attributes": {},
        "score": 1.0
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "true",
        "attributes": {},
        "score": 1.0
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "risky",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false",
        "attributes": {
          "risky_application_count": 0
        },
        "score": 0.0
      }
    ],
    "id": "example-response-2"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro200/profiles/example-response-3 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "NOT_ENOUGH_INTERACTION_DATA",
  "message": "Data has been received for this profile, though some signals may have insufficient data to calculate a result.",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-not_enough_interaction_data",
  "profile": {
    "siteId": "form_neuro200",
    "funnel": "unknown",
    "clientId": "example-response-3",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1
    },
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "insufficient data",
        "attributes": {
          "other__timing__feature_2": 1,
          "other__timing__feature_1": 0.4711393170142037,
          "other__timing__feature_4": null,
          "other__timing__feature_3": 0.3517169614984391,
          "pii__method_of_entry__feature_3": 0.6,
          "pii__method_of_entry__feature_1": 0,
          "pii__method_of_entry__feature_2": 0,
          "other__typing_patterns__feature_9": null,
          "device_type__is_pc": 0,
          "other__typing_patterns__feature_8": null,
          "other__typing_patterns__feature_7": null,
          "other__typing_patterns__feature_6": null,
          "other__typing_patterns__feature_5": 51.364365971107546,
          "other__typing_patterns__feature_4": 0.48948194662480377,
          "all_text__typing_patterns__feature_2": 0.48948194662480377,
          "all_text__typing_patterns__feature_1": 175.1922488983861,
          "other__interaction_patterns__feature_5": null,
          "other__typing_patterns__feature_3": 272.9413856490071,
          "other__interaction_patterns__feature_6": null,
          "other__typing_patterns__feature_2": 23.5,
          "other__typing_patterns__feature_1": 320.3333333333333,
          "other__interaction_patterns__feature_1": 1,
          "other__interaction_patterns__feature_2": null,
          "other__interaction_patterns__feature_3": null,
          "other__interaction_patterns__feature_4": null,
          "pii__timing__feature_1": 0.783121916842847,
          "pii__timing__feature_2": null,
          "all_text__method_of_entry__feature_1": 6,
          "pii__interaction_patterns__feature_5": null,
          "other__method_of_entry__feature_1": null,
          "pii__interaction_patterns__feature_2": 2,
          "pii__interaction_patterns__feature_1": 0,
          "all_text__method_of_entry__feature_2": 0,
          "pii__interaction_patterns__feature_4": 0,
          "all_text__method_of_entry__feature_3": 0,
          "pii__interaction_patterns__feature_3": 0,
          "pii__typing_patterns__feature_5": 0.5811942230632509,
          "pii__typing_patterns__feature_4": 234.7151656087466,
          "pii__typing_patterns__feature_7": 48.74086108854589,
          "pii__typing_patterns__feature_6": 0.48948194662480377,
          "pii__typing_patterns__feature_9": -0.014812456896697216,
          "pii__typing_patterns__feature_8": 0.0966871369294604,
          "all_text__timing__feature_1": 1.5,
          "other__typing_patterns__feature_11": null,
          "all_text__timing__feature_4": 0,
          "other__typing_patterns__feature_10": null,
          "pii__typing_patterns__feature_1": 34,
          "all_text__timing__feature_5": 0,
          "all_text__timing__feature_2": 1864,
          "pii__typing_patterns__feature_3": 102.25849597955174,
          "all_text__timing__feature_3": 0.2620955039500008,
          "pii__typing_patterns__feature_2": 313.8378732543909,
          "pii__transitions__feature_2": 1,
          "pii__transitions__feature_1": 0
        }
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "insufficient data",
        "attributes": {}
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "insufficient data",
        "attributes": {}
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "insufficient data",
        "attributes": {}
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false",
        "attributes": {
          "risky_application_count": 0
        },
        "score": 0.0
      }
    ],
    "id": "example-response-3"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro200/profiles/example-response-4 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro200",
    "funnel": "unknown",
    "clientId": "example-response-4",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1
    },
    "signals": [
      {
        "version": "2.5.0",
        "model": "familiarity",
        "label": "medium",
        "attributes": {
          "other__timing__feature_2": 1,
          "other__timing__feature_1": 0.4711393170142037,
          "other__timing__feature_4": null,
          "other__timing__feature_3": 0.3517169614984391,
          "pii__method_of_entry__feature_3": 0.6,
          "pii__method_of_entry__feature_1": 0,
          "pii__method_of_entry__feature_2": 0,
          "other__typing_patterns__feature_9": null,
          "device_type__is_pc": 0,
          "other__typing_patterns__feature_8": null,
          "other__typing_patterns__feature_7": null,
          "other__typing_patterns__feature_6": null,
          "other__typing_patterns__feature_5": 51.364365971107546,
          "other__typing_patterns__feature_4": 0.48948194662480377,
          "all_text__typing_patterns__feature_2": 0.48948194662480377,
          "all_text__typing_patterns__feature_1": 175.1922488983861,
          "other__interaction_patterns__feature_5": null,
          "other__typing_patterns__feature_3": 272.9413856490071,
          "other__interaction_patterns__feature_6": null,
          "other__typing_patterns__feature_2": 23.5,
          "other__typing_patterns__feature_1": 320.3333333333333,
          "other__interaction_patterns__feature_1": 1,
          "other__interaction_patterns__feature_2": null,
          "other__interaction_patterns__feature_3": null,
          "other__interaction_patterns__feature_4": null,
          "pii__timing__feature_1": 0.783121916842847,
          "pii__timing__feature_2": null,
          "pii__interaction_patterns__feature_5": null,
          "all_text__method_of_entry__feature_1": 6,
          "other__method_of_entry__feature_1": null,
          "pii__interaction_patterns__feature_2": 2,
          "pii__interaction_patterns__feature_1": 0,
          "pii__interaction_patterns__feature_4": 0,
          "all_text__method_of_entry__feature_2": 0,
          "pii__interaction_patterns__feature_3": 0,
          "all_text__method_of_entry__feature_3": 0,
          "pii__typing_patterns__feature_5": 0.5811942230632509,
          "pii__typing_patterns__feature_4": 234.7151656087466,
          "pii__typing_patterns__feature_7": 48.74086108854589,
          "pii__typing_patterns__feature_6": 0.48948194662480377,
          "pii__typing_patterns__feature_9": -0.014812456896697216,
          "pii__typing_patterns__feature_8": 0.0966871369294604,
          "all_text__timing__feature_1": 1.5,
          "other__typing_patterns__feature_11": null,
          "pii__typing_patterns__feature_1": 34,
          "all_text__timing__feature_4": 0,
          "other__typing_patterns__feature_10": null,
          "all_text__timing__feature_5": 0,
          "pii__typing_patterns__feature_3": 102.25849597955174,
          "all_text__timing__feature_2": 1864,
          "pii__typing_patterns__feature_2": 313.8378732543909,
          "all_text__timing__feature_3": 0.2620955039500008,
          "pii__transitions__feature_2": 1,
          "pii__transitions__feature_1": 0
        },
        "score": 77.2
      },
      {
        "version": "1.0",
        "model": "fraud_ring_indicator",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "automated_activity",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "combined_digital_intent",
        "label": "neutral",
        "attributes": {},
        "score": 78.0
      },
      {
        "version": "1.0",
        "model": "risky_device",
        "label": "false",
        "attributes": {
          "risky_application_count": 0
        },
        "score": 0.0
      }
    ],
    "id": "example-response-4"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro200/profiles/example-response-5 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SITE_NOT_CONFIGURED",
  "message": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-site_not_configured",
  "profile": {
    "siteId": "form_neuro200",
    "funnel": "",
    "clientId": "",
    "signals": null,
    "id": "example-response-5"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro200/profiles/example-response-6 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro200",
        "funnel": "unknown",
        "clientId": "example-response-6",
        "interactionAttributes": {
            "interaction_time_ms": 112147,
            "unique_all_targets_count": 4,
            "client_id_count": 1,
            "unique_known_targets_count": 4,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 249429,
            "user_id_count": 1
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "low",
                "attributes": {
                    "other__timing__feature_2": null,
                    "other__timing__feature_1": null,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": null,
                    "pii__method_of_entry__feature_3": 3.75,
                    "pii__method_of_entry__feature_1": 2,
                    "pii__method_of_entry__feature_2": 3,
                    "other__typing_patterns__feature_9": null,
                    "device_type__is_pc": 1,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": null,
                    "other__typing_patterns__feature_4": null,
                    "all_text__typing_patterns__feature_2": 2.2456538170823883,
                    "all_text__typing_patterns__feature_1": null,
                    "other__typing_patterns__feature_3": null,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_2": null,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_1": null,
                    "other__interaction_patterns__feature_1": null,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0,
                    "pii__timing__feature_2": 25337,
                    "all_text__method_of_entry__feature_1": 0,
                    "pii__interaction_patterns__feature_5": 0.7142857142857143,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 5,
                    "pii__interaction_patterns__feature_1": 1,
                    "all_text__method_of_entry__feature_2": 3,
                    "pii__interaction_patterns__feature_4": 1,
                    "all_text__method_of_entry__feature_3": 1,
                    "pii__interaction_patterns__feature_3": 61.70561832874972,
                    "pii__typing_patterns__feature_5": 2.2456538170823883,
                    "pii__typing_patterns__feature_4": null,
                    "pii__typing_patterns__feature_7": 300,
                    "pii__typing_patterns__feature_6": 2.2456538170823883,
                    "pii__typing_patterns__feature_9": 1.4,
                    "pii__typing_patterns__feature_8": 1.4,
                    "all_text__timing__feature_1": null,
                    "other__typing_patterns__feature_11": null,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_4": 0,
                    "pii__typing_patterns__feature_1": 200.11111111111111,
                    "all_text__timing__feature_5": 0.7505883167220376,
                    "all_text__timing__feature_2": 0,
                    "pii__typing_patterns__feature_3": 36.66060555964672,
                    "all_text__timing__feature_3": 0.07866864375364084,
                    "pii__typing_patterns__feature_2": 36.66060555964672,
                    "pii__transitions__feature_2": 6,
                    "pii__transitions__feature_1": 1
                },
                "score": 51.6
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "risky",
                "attributes": {},
                "score": 2.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            }
        ],
        "id": "example-response-6"
    }
}
siteId value form_neuro300 on the v4.1 profiles endpoint
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro300/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro300",
    "funnel": "unknown",
    "clientId": "example-response-1",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1
    },
    "signals": [
      {
        "version": "1.0",
        "model": "session_login_fraud_ring_indicator",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "session_login_automated",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "behavioral_analytics_recognition",
        "label": "low risk",
        "attributes": {},
        "score": 75
      },
      {
        "version": "1.0",
        "model": "ato_risk",
        "label": "low",
        "attributes": {},
        "score": 0
      },
      {
        "version": "1.0.0",
        "model": "remote_access",
        "label": "false",
        "attributes": {},
        "score": 0
      }
    ],
    "id": "example-response-1"
  }
}

// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro300/profiles/example-response-2 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro300",
    "funnel": "unknown",
    "clientId": "example-response-2",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1
    },
    "signals": [
      {
        "version": "1.0",
        "model": "session_login_fraud_ring_indicator",
        "label": "true",
        "attributes": {},
        "score": 1.0
      },
      {
        "version": "1.0",
        "model": "session_login_automated",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "behavioral_analytics_recognition",
        "label": "high risk",
        "attributes": {},
        "score": 5
      },
      {
        "version": "1.0",
        "model": "ato_risk",
        "label": "high",
        "attributes": {},
        "score": 1
      },
      {
        "version": "1.0.0",
        "model": "remote_access",
        "label": "true",
        "attributes": {},
        "score": 1
      }
    ],
    "id": "example-response-2"
  }
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro300/profiles/example-response-3 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro300",
    "funnel": "unknown",
    "clientId": "example-response-3",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1
    },
    "signals": [
      {
        "version": "1.0",
        "model": "session_login_fraud_ring_indicator",
        "label": "insufficient data",
        "attributes": {}
      },
      {
        "version": "1.0",
        "model": "session_login_automated",
        "label": "insufficient data",
        "attributes": {}
      },
      {
        "version": "1.0",
        "model": "behavioral_analytics_recognition",
        "label": "insufficient data",
        "attributes": {},
      },
      {
        "version": "1.0",
        "model": "ato_risk",
        "label": "insufficient data",
        "attributes": {}
      },
      {
        "version": "1.0.0",
        "model": "remote_access",
        "label": "insufficient data",
        "attributes": {}
      }
    ],
    "id": "example-response-3"
  }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro300/profiles/example-response-4 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "profile": {
    "siteId": "form_neuro300",
    "funnel": "unknown",
    "clientId": "example-response-4",
    "interactionAttributes": {
      "interaction_time_ms": 32487,
      "unique_all_targets_count": 5,
      "client_id_count": 1,
      "unique_known_targets_count": 5,
      "unique_unknown_targets_count": 0,
      "session_id_count": 1,
      "elapsed_time_ms": 54428,
      "user_id_count": 1,
      "ip_geolocation": {
        "error": "Insufficient data: Geolocation lookup has not completed"
      }
    },
    "signals": [
      {
        "version": "1.0",
        "model": "session_login_fraud_ring_indicator",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "session_login_automated",
        "label": "false",
        "attributes": {},
        "score": 0.0
      },
      {
        "version": "1.0",
        "model": "behavioral_analytics_recognition",
        "label": "neutral",
        "attributes": {},
        "score": 50
      },
      {
        "version": "1.0",
        "model": "ato_risk",
        "label": "medium",
        "attributes": {},
        "score": 0.5
      },
      {
        "version": "1.0.0",
        "model": "remote_access",
        "label": "false",
        "attributes": {},
        "score": 0
      }
    ],
    "id": "example-response-4"
  }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro300/profiles/example-response-5 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "SITE_NOT_CONFIGURED",
  "message": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-site_not_configured",
  "profile": {
    "siteId": "form_neuro300",
    "funnel": "",
    "clientId": "",
    "signals": null,
    "id": "example-response-5"
  }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro300/profiles/example-response-6 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro300",
        "funnel": "unknown",
        "clientId": "example-response-6",
        "interactionAttributes": {
            "interaction_time_ms": 112147,
            "unique_all_targets_count": 4,
            "client_id_count": 1,
            "unique_known_targets_count": 4,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 249429,
            "user_id_count": 1,
            "ip_geolocation": {
                "error": "Insufficient data: Geolocation lookup has not completed"
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "session_login_automated",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "high risk",
                "attributes": {},
                "score": 5
            },
            {
              "version": "1.0",
              "model": "ato_risk",
              "label": "low",
              "attributes": {},
              "score": 0
            },
            {
              "version": "1.0.0",
              "model": "remote_access",
              "label": "false",
              "attributes": {},
              "score": 0
            }
        ],
        "id": "example-response-6"
    }
}
siteId value form_neuro400 on the v4.1 profiles endpoint
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-1",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "high",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": 0,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "other__typing_patterns__feature_9": 0,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_8": 0,
                    "other__typing_patterns__feature_7": 0,
                    "other__typing_patterns__feature_6": 0,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_5": 0,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__interaction_patterns__feature_6": 0,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": 0,
                    "other__interaction_patterns__feature_3": 0,
                    "other__interaction_patterns__feature_4": 0,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": 2,
                    "all_text__method_of_entry__feature_1": 6,
                    "pii__interaction_patterns__feature_5": 0,
                    "other__method_of_entry__feature_1": 0,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": 0,
                    "other__typing_patterns__feature_10": 0,
                    "all_text__timing__feature_4": 0,
                    "pii__typing_patterns__feature_1": 34,
                    "all_text__timing__feature_5": 0,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                },
                "score": 97.68
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "genuine",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "false",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 1,
                    "multiple_ids_per_device_count_1_week": 1,
                    "multiple_ids_per_device_count_4_week": 1,
                    "multiple_ids_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "false",
                "attributes": {
                    "time": 0,
                    "timestamp": 0
                }
            }
        ],
        "id": "example-response-1"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-2 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-2",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "low",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_9": null,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": null,
                    "pii__interaction_patterns__feature_5": null,
                    "all_text__method_of_entry__feature_1": 6,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": null,
                    "all_text__timing__feature_4": 0,
                    "pii__typing_patterns__feature_1": 34,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_5": 0,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                },
                "score": 97.68
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "true",
                "attributes": {},
                "score": 1.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "true",
                "attributes": {},
                "score": 1.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "risky",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "true",
                "attributes": {
                    "aws_ip_set": true,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false,
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "true",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 9,
                    "multiple_ids_per_device_count_1_week": 15,
                    "multiple_ids_per_device_count_4_week": 15,
                    "multiple_ids_per_device_count_12_week": 15
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": true,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "true",
                "attributes": {
                    "time": "2023-07-19T011:00:00Z",
                    "timestamp": 1689445704
                }
            }
        ],
        "id": "example-response-2"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-3 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "NOT_ENOUGH_INTERACTION_DATA",
    "message": "Data has been received for this profile, though some signals may have insufficient data to calculate a result.",
    "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-not_enough_interaction_data",
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-3",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "error": "Insufficient data: Geolocation lookup has not completed"
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "insufficient data",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "other__typing_patterns__feature_9": null,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": null,
                    "all_text__method_of_entry__feature_1": 6,
                    "pii__interaction_patterns__feature_5": null,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": null,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_4": 0,
                    "pii__typing_patterns__feature_1": 34,
                    "all_text__timing__feature_5": 0,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                }
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "insufficient data",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "insufficient data",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "insufficient data",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            }
        ],
        "id": "example-response-3"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-4 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-4",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "medium",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "other__typing_patterns__feature_9": null,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": null,
                    "all_text__method_of_entry__feature_1": 6,
                    "pii__interaction_patterns__feature_5": null,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": null,
                    "all_text__timing__feature_4": 0,
                    "other__typing_patterns__feature_10": null,
                    "pii__typing_patterns__feature_1": 34,
                    "all_text__timing__feature_5": 0,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                },
                "score": 77.2
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "neutral",
                "attributes": {},
                "score": 78.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false,
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "false",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 1,
                    "multiple_ids_per_device_count_1_week": 1,
                    "multiple_ids_per_device_count_4_week": 2,
                    "multiple_ids_per_device_count_12_week": 4
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "false",
                "attributes": {
                    "time": 0,
                    "timestamp": 0
                }
            }
        ],
        "id": "example-response-4"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-5 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SITE_NOT_CONFIGURED",
    "message": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
    "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-site_not_configured",
    "profile": {
        "siteId": "form_neuro400",
        "funnel": "",
        "clientId": "",
        "signals": null,
        "id": "example-response-5"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-6 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-6",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 112147,
            "unique_all_targets_count": 4,
            "client_id_count": 1,
            "unique_known_targets_count": 4,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 249429,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "low",
                "attributes": {
                    "other__timing__feature_2": null,
                    "other__timing__feature_1": null,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": null,
                    "pii__method_of_entry__feature_3": 3.75,
                    "pii__method_of_entry__feature_1": 2,
                    "pii__method_of_entry__feature_2": 3,
                    "other__typing_patterns__feature_9": null,
                    "device_type__is_pc": 1,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": null,
                    "other__typing_patterns__feature_4": null,
                    "all_text__typing_patterns__feature_2": 2.2456538170823883,
                    "all_text__typing_patterns__feature_1": null,
                    "other__typing_patterns__feature_3": null,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_2": null,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_1": null,
                    "other__interaction_patterns__feature_1": null,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0,
                    "pii__timing__feature_2": 25337,
                    "all_text__method_of_entry__feature_1": 0,
                    "pii__interaction_patterns__feature_5": 0.7142857142857143,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 5,
                    "pii__interaction_patterns__feature_1": 1,
                    "all_text__method_of_entry__feature_2": 3,
                    "pii__interaction_patterns__feature_4": 1,
                    "all_text__method_of_entry__feature_3": 1,
                    "pii__interaction_patterns__feature_3": 61.70561832874972,
                    "pii__typing_patterns__feature_5": 2.2456538170823883,
                    "pii__typing_patterns__feature_4": null,
                    "pii__typing_patterns__feature_7": 300,
                    "pii__typing_patterns__feature_6": 2.2456538170823883,
                    "pii__typing_patterns__feature_9": 1.4,
                    "pii__typing_patterns__feature_8": 1.4,
                    "all_text__timing__feature_1": null,
                    "other__typing_patterns__feature_11": null,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_4": 0,
                    "pii__typing_patterns__feature_1": 200.11111111111111,
                    "all_text__timing__feature_5": 0.7505883167220376,
                    "all_text__timing__feature_2": 0,
                    "pii__typing_patterns__feature_3": 36.66060555964672,
                    "all_text__timing__feature_3": 0.07866864375364084,
                    "pii__typing_patterns__feature_2": 36.66060555964672,
                    "pii__transitions__feature_2": 6,
                    "pii__transitions__feature_1": 1
                },
                "score": 51.6
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "risky",
                "attributes": {},
                "score": 2.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false,
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "false",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 1,
                    "multiple_ids_per_device_count_1_week": 1,
                    "multiple_ids_per_device_count_4_week": 1,
                    "multiple_ids_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": true,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "false",
                "attributes": {
                    "time": 0,
                    "timestamp": 0
                }
            }
        ],
        "id": "example-response-6"
    }
}
siteId value form_neuro400 on the v4.1 users endpoint
// Request
// NOTE: In the case below, "example-response-1" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/users/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-1",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "high",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": 0,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_9": 0,
                    "other__typing_patterns__feature_8": 0,
                    "other__typing_patterns__feature_7": 0,
                    "other__typing_patterns__feature_6": 0,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__interaction_patterns__feature_5": 0,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_6": 0,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": 0,
                    "other__interaction_patterns__feature_3": 0,
                    "other__interaction_patterns__feature_4": 0,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": 2,
                    "pii__interaction_patterns__feature_5": 0,
                    "all_text__method_of_entry__feature_1": 6,
                    "other__method_of_entry__feature_1": 0,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": 0,
                    "pii__typing_patterns__feature_1": 34,
                    "all_text__timing__feature_4": 0,
                    "other__typing_patterns__feature_10": 0,
                    "all_text__timing__feature_5": 0,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                },
                "score": 97.68
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "genuine",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "false",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 1,
                    "multiple_ids_per_device_count_1_week": 1,
                    "multiple_ids_per_device_count_4_week": 1,
                    "multiple_ids_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "false",
                "attributes": {
                    "time": 0,
                    "timestamp": 0
                }
            }
        ],
        "id": "example-response-1"
    }
}
// Request
// NOTE: In the case below, "example-response-2" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/users/example-response-2 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-2",
        "deviceId": "example-device-2",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "low",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_9": null,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": null,
                    "pii__interaction_patterns__feature_5": null,
                    "all_text__method_of_entry__feature_1": 6,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": null,
                    "pii__typing_patterns__feature_1": 34,
                    "all_text__timing__feature_4": 0,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_5": 0,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                },
                "score": 97.68
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "true",
                "attributes": {},
                "score": 1.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "true",
                "attributes": {},
                "score": 1.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "risky",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "true",
                "attributes": {
                    "aws_ip_set": true,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false,
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "true",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 9,
                    "multiple_ids_per_device_count_1_week": 15,
                    "multiple_ids_per_device_count_4_week": 15,
                    "multiple_ids_per_device_count_12_week": 15
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": true,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "true",
                "attributes": {
                    "time": "2023-07-19T011:00:00Z",
                    "timestamp": 1689445704
                }
            }
        ],
        "id": "example-response-2"
    }
}
// Request
// NOTE: In the case below, "example-response-3" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/users/example-response-3 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "NOT_ENOUGH_INTERACTION_DATA",
    "message": "Data has been received for this profile, though some signals may have insufficient data to calculate a result.",
    "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-not_enough_interaction_data",
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-3",
        "deviceId": "example-device-3",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "error": "Insufficient data: Geolocation lookup has not completed"
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "insufficient data",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_9": null,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": null,
                    "pii__interaction_patterns__feature_5": null,
                    "all_text__method_of_entry__feature_1": 6,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": null,
                    "pii__typing_patterns__feature_1": 34,
                    "all_text__timing__feature_4": 0,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_5": 0,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                }
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "insufficient data",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "insufficient data",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "insufficient data",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            }
        ],
        "id": "example-response-3"
    }
}
}
// Request
// NOTE: In the case below, "example-response-4" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/users/example-response-4 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-4",
        "deviceId": "example-device-4",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "medium",
                "attributes": {
                    "other__timing__feature_2": 1,
                    "other__timing__feature_1": 0.4711393170142037,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": 0.3517169614984391,
                    "pii__method_of_entry__feature_3": 0.6,
                    "pii__method_of_entry__feature_1": 0,
                    "pii__method_of_entry__feature_2": 0,
                    "other__typing_patterns__feature_9": null,
                    "device_type__is_pc": 0,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": 51.364365971107546,
                    "other__typing_patterns__feature_4": 0.48948194662480377,
                    "all_text__typing_patterns__feature_2": 0.48948194662480377,
                    "all_text__typing_patterns__feature_1": 175.1922488983861,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_3": 272.9413856490071,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_2": 23.5,
                    "other__typing_patterns__feature_1": 320.3333333333333,
                    "other__interaction_patterns__feature_1": 1,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0.783121916842847,
                    "pii__timing__feature_2": null,
                    "all_text__method_of_entry__feature_1": 6,
                    "pii__interaction_patterns__feature_5": null,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 2,
                    "pii__interaction_patterns__feature_1": 0,
                    "all_text__method_of_entry__feature_2": 0,
                    "pii__interaction_patterns__feature_4": 0,
                    "all_text__method_of_entry__feature_3": 0,
                    "pii__interaction_patterns__feature_3": 0,
                    "pii__typing_patterns__feature_5": 0.5811942230632509,
                    "pii__typing_patterns__feature_4": 234.7151656087466,
                    "pii__typing_patterns__feature_7": 48.74086108854589,
                    "pii__typing_patterns__feature_6": 0.48948194662480377,
                    "pii__typing_patterns__feature_9": -0.014812456896697216,
                    "pii__typing_patterns__feature_8": 0.0966871369294604,
                    "all_text__timing__feature_1": 1.5,
                    "other__typing_patterns__feature_11": null,
                    "other__typing_patterns__feature_10": null,
                    "pii__typing_patterns__feature_1": 34,
                    "all_text__timing__feature_4": 0,
                    "all_text__timing__feature_5": 0,
                    "pii__typing_patterns__feature_3": 102.25849597955174,
                    "all_text__timing__feature_2": 1864,
                    "pii__typing_patterns__feature_2": 313.8378732543909,
                    "all_text__timing__feature_3": 0.2620955039500008,
                    "pii__transitions__feature_2": 1,
                    "pii__transitions__feature_1": 0
                },
                "score": 77.2
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "neutral",
                "attributes": {},
                "score": 78.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false,
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "false",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 1,
                    "multiple_ids_per_device_count_1_week": 1,
                    "multiple_ids_per_device_count_4_week": 2,
                    "multiple_ids_per_device_count_12_week": 4
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "false",
                "attributes": {
                    "time": 0,
                    "timestamp": 0
                }
            }
        ],
        "id": "example-response-4"
    }
}
// Request
// NOTE: In the case below, "example-response-5" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/users/example-response-5 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SITE_NOT_CONFIGURED",
    "message": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
    "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-site_not_configured",
    "profile": {
        "siteId": "form_neuro400",
        "funnel": "",
        "clientId": "",
        "signals": null,
        "id": "example-response-5"
    }
}
// Request
// NOTE: In the case below, "example-response-6" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-6 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-6",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 112147,
            "unique_all_targets_count": 4,
            "client_id_count": 1,
            "unique_known_targets_count": 4,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 249429,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "low",
                "attributes": {
                    "other__timing__feature_2": null,
                    "other__timing__feature_1": null,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": null,
                    "pii__method_of_entry__feature_3": 3.75,
                    "pii__method_of_entry__feature_1": 2,
                    "pii__method_of_entry__feature_2": 3,
                    "other__typing_patterns__feature_9": null,
                    "device_type__is_pc": 1,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": null,
                    "other__typing_patterns__feature_4": null,
                    "all_text__typing_patterns__feature_2": 2.2456538170823883,
                    "all_text__typing_patterns__feature_1": null,
                    "other__typing_patterns__feature_3": null,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_2": null,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_1": null,
                    "other__interaction_patterns__feature_1": null,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0,
                    "pii__timing__feature_2": 25337,
                    "all_text__method_of_entry__feature_1": 0,
                    "pii__interaction_patterns__feature_5": 0.7142857142857143,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 5,
                    "pii__interaction_patterns__feature_1": 1,
                    "all_text__method_of_entry__feature_2": 3,
                    "pii__interaction_patterns__feature_4": 1,
                    "all_text__method_of_entry__feature_3": 1,
                    "pii__interaction_patterns__feature_3": 61.70561832874972,
                    "pii__typing_patterns__feature_5": 2.2456538170823883,
                    "pii__typing_patterns__feature_4": null,
                    "pii__typing_patterns__feature_7": 300,
                    "pii__typing_patterns__feature_6": 2.2456538170823883,
                    "pii__typing_patterns__feature_9": 1.4,
                    "pii__typing_patterns__feature_8": 1.4,
                    "all_text__timing__feature_1": null,
                    "other__typing_patterns__feature_11": null,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_4": 0,
                    "pii__typing_patterns__feature_1": 200.11111111111111,
                    "all_text__timing__feature_5": 0.7505883167220376,
                    "all_text__timing__feature_2": 0,
                    "pii__typing_patterns__feature_3": 36.66060555964672,
                    "all_text__timing__feature_3": 0.07866864375364084,
                    "pii__typing_patterns__feature_2": 36.66060555964672,
                    "pii__transitions__feature_2": 6,
                    "pii__transitions__feature_1": 1
                },
                "score": 51.6
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "risky",
                "attributes": {},
                "score": 2.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false,
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "false",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 1,
                    "multiple_ids_per_device_count_1_week": 1,
                    "multiple_ids_per_device_count_4_week": 1,
                    "multiple_ids_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": true,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "false",
                "attributes": {
                    "time": 0,
                    "timestamp": 0
                }
            }
        ],
        "id": "example-response-6"
    }
}
siteId value form_neuro500 on the v4.1 profiles endpoint
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-1",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "false",
                "attributes": {
                    "country_count_1_day": 1,
                    "country_count_1_week": 1,
                    "country_count_4_week": 1,
                    "country_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "false",
                "attributes": {
                    "device_type_count_1_day": 1,
                    "device_type_count_1_week": 1,
                    "device_type_count_4_week": 1,
                    "device_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "false",
                "attributes": {
                    "browser_type_count_1_day": 1,
                    "browser_type_count_1_week": 1,
                    "browser_type_count_4_week": 1,
                    "browser_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "false",
                "attributes": {
                    "browser_version_count_1_day": 1,
                    "browser_version_count_1_week": 1,
                    "browser_version_count_4_week": 1,
                    "browser_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "false",
                "attributes": {
                    "ip_address_count_1_day": 1,
                    "ip_address_count_1_week": 1,
                    "ip_address_count_4_week": 1,
                    "ip_address_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "false",
                "attributes": {
                    "registered_user_id_count_1_day": 1,
                    "registered_user_id_count_1_week": 1,
                    "registered_user_id_count_4_week": 1,
                    "registered_user_id_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "false",
                "attributes": {
                    "device_count_1_day": 1,
                    "device_count_1_week": 1,
                    "device_count_4_week": 1,
                    "device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "false",
                "attributes": {
                    "os_type_count_1_day": 1,
                    "os_type_count_1_week": 1,
                    "os_type_count_4_week": 1,
                    "os_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "false",
                "attributes": {
                    "os_version_count_1_day": 1,
                    "os_version_count_1_week": 1,
                    "os_version_count_4_week": 1,
                    "os_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "false",
                "attributes": {
                    "distance_km_between_sessions": 0.2343,
                    "time_hr_between_sessions": 1
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "false",
                "attributes": {
                    "user_agent_count_1_day": 1,
                    "user_agent_count_1_week": 1,
                    "user_agent_count_4_week": 1,
                    "user_agent_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "false",
                "attributes": {
                    "sessions_per_device_count_1_day": 1,
                    "sessions_per_device_count_1_week": 1,
                    "sessions_per_device_count_4_week": 1,
                    "sessions_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "low risk",
                "attributes": {},
                "score": 75
            },
            {
                "version": "1.0",
                "model": "ato_risk",
                "label": "low",
                "attributes": {},
                "score": 0
            },
            {
                "version": "1.0.0",
                "model": "remote_access",
                "label": "false",
                "attributes": {},
                "score": 0
            }
        ],
        "id": "example-response-1"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/example-response-2 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-2",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "true",
                "attributes": {
                    "country_count_1_day": 3,
                    "country_count_1_week": 5,
                    "country_count_4_week": 6,
                    "country_count_12_week": 6
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "true",
                "attributes": {
                    "device_type_count_1_day": 2,
                    "device_type_count_1_week": 4,
                    "device_type_count_4_week": 5,
                    "device_type_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "true",
                "attributes": {
                    "browser_type_count_1_day": 2,
                    "browser_type_count_1_week": 4,
                    "browser_type_count_4_week": 5,
                    "browser_type_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "true",
                "attributes": {
                    "browser_version_count_1_day": 2,
                    "browser_version_count_1_week": 4,
                    "browser_version_count_4_week": 5,
                    "browser_version_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "true",
                "attributes": {
                    "ip_address_count_1_day": 2,
                    "ip_address_count_1_week": 4,
                    "ip_address_count_4_week": 5,
                    "ip_address_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "true",
                "attributes": {
                    "registered_user_id_count_1_day": 6,
                    "registered_user_id_count_1_week": 8,
                    "registered_user_id_count_4_week": 9,
                    "registered_user_id_count_12_week": 13
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "true",
                "attributes": {
                    "device_count_1_day": 4,
                    "device_count_1_week": 5,
                    "device_count_4_week": 6,
                    "device_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "true",
                "attributes": {
                    "os_type_count_1_day": 2,
                    "os_type_count_1_week": 4,
                    "os_type_count_4_week": 5,
                    "os_type_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "false",
                "attributes": {
                    "os_version_count_1_day": 2,
                    "os_version_count_1_week": 4,
                    "os_version_count_4_week": 5,
                    "os_version_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "true",
                "attributes": {
                    "distance_km_between_sessions": 5570.240282804509,
                    "time_hr_between_sessions": 1
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "true",
                "attributes": {
                    "user_agent_count_1_day": 2,
                    "user_agent_count_1_week": 4,
                    "user_agent_count_4_week": 5,
                    "user_agent_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "true",
                "attributes": {
                    "sessions_per_device_count_1_day": 8,
                    "sessions_per_device_count_1_week": 10,
                    "sessions_per_device_count_4_week": 11,
                    "sessions_per_device_count_12_week": 11
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": true,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "true",
                "attributes": {
                    "aws_ip_set": true,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "high risk",
                "attributes": {},
                "score": 5
            },
	          {
                "version": "1.0",
                "model": "ato_risk",
                "label": "high",
                "attributes": {},
                "score": 1
            },
          	{
                "version": "1.0.0",
                "model": "remote_access",
                "label": "true",
                "attributes": {},
                "score": 1
            }
        ],
        "id": "example-response-2"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/example-response-3 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-3",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "error": "Insufficient data: Geolocation lookup has not completed"
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "country_count_1_day": 1,
                    "country_count_1_week": 1,
                    "country_count_4_week": 1,
                    "country_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "device_type_count_1_day": 1,
                    "device_type_count_1_week": 1,
                    "device_type_count_4_week": 1,
                    "device_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "browser_type_count_1_day": 1,
                    "browser_type_count_1_week": 1,
                    "browser_type_count_4_week": 1,
                    "browser_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "browser_version_count_1_day": 1,
                    "browser_version_count_1_week": 1,
                    "browser_version_count_4_week": 1,
                    "browser_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "ip_address_count_1_day": 1,
                    "ip_address_count_1_week": 1,
                    "ip_address_count_4_week": 1,
                    "ip_address_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "false",
                "attributes": {
                    "registered_user_id_count_1_day": 1,
                    "registered_user_id_count_1_week": 1,
                    "registered_user_id_count_4_week": 1,
                    "registered_user_id_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "true",
                "attributes": {
                    "device_count_1_day": 1,
                    "device_count_1_week": 1,
                    "device_count_4_week": 1,
                    "device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "os_type_count_1_day": 1,
                    "os_type_count_1_week": 1,
                    "os_type_count_4_week": 1,
                    "os_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "os_version_count_1_day": 1,
                    "os_version_count_1_week": 1,
                    "os_version_count_4_week": 1,
                    "os_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "distance_km_between_sessions": null,
                    "time_hr_between_sessions": null
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "user_agent_count_1_day": 1,
                    "user_agent_count_1_week": 1,
                    "user_agent_count_4_week": 1,
                    "user_agent_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "false",
                "attributes": {
                    "sessions_per_device_count_1_day": 1,
                    "sessions_per_device_count_1_week": 1,
                    "sessions_per_device_count_4_week": 1,
                    "sessions_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "insufficient data",
                "attributes": {},
                "score": null
            },
          	{
              "version": "1.0",
              "model": "ato_risk",
              "label": "insufficient data",
              "attributes": {}
          	},
            {
              "version": "1.0.0",
              "model": "remote_access",
              "label": "insufficient data",
              "attributes": {}
            }
        ],
        "id": "example-response-3"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/example-response-4 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-4",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "false",
                "attributes": {
                    "country_count_1_day": 1,
                    "country_count_1_week": 1,
                    "country_count_4_week": 1,
                    "country_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "true",
                "attributes": {
                    "device_type_count_1_day": 2,
                    "device_type_count_1_week": 2,
                    "device_type_count_4_week": 2,
                    "device_type_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "false",
                "attributes": {
                    "browser_type_count_1_day": 1,
                    "browser_type_count_1_week": 1,
                    "browser_type_count_4_week": 2,
                    "browser_type_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "false",
                "attributes": {
                    "browser_version_count_1_day": 1,
                    "browser_version_count_1_week": 1,
                    "browser_version_count_4_week": 2,
                    "browser_version_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "true",
                "attributes": {
                    "ip_address_count_1_day": 2,
                    "ip_address_count_1_week": 2,
                    "ip_address_count_4_week": 2,
                    "ip_address_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "false",
                "attributes": {
                    "registered_user_id_count_1_day": 1,
                    "registered_user_id_count_1_week": 2,
                    "registered_user_id_count_4_week": 2,
                    "registered_user_id_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "false",
                "attributes": {
                    "device_count_1_day": 2,
                    "device_count_1_week": 2,
                    "device_count_4_week": 2,
                    "device_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "false",
                "attributes": {
                    "os_type_count_1_day": 1,
                    "os_type_count_1_week": 1,
                    "os_type_count_4_week": 1,
                    "os_type_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "true",
                "attributes": {
                    "os_version_count_1_day": 2,
                    "os_version_count_1_week": 2,
                    "os_version_count_4_week": 2,
                    "os_version_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "false",
                "attributes": {
                    "distance_km_between_sessions": 0.2343,
                    "time_hr_between_sessions": 1
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "true",
                "attributes": {
                    "user_agent_count_1_day": 2,
                    "user_agent_count_1_week": 2,
                    "user_agent_count_4_week": 2,
                    "user_agent_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "false",
                "attributes": {
                    "sessions_per_device_count_1_day": 1,
                    "sessions_per_device_count_1_week": 2,
                    "sessions_per_device_count_4_week": 2,
                    "sessions_per_device_count_12_week": 4
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "neutral",
                "attributes": {},
                "score": 50
            },
            {
                "version": "1.0",
                "model": "ato_risk",
                "label": "medium",
                "attributes": {},
                "score": 0.5
            },
            {
                "version": "1.0.0",
                "model": "remote_access",
                "label": "false",
                "attributes": {},
                "score": 0
            }
        ],
        "id": "example-response-4"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/example-response-5 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SITE_NOT_CONFIGURED",
    "message": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
    "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-site_not_configured",
    "profile": {
        "siteId": "form_neuro500",
        "funnel": "",
        "clientId": "",
        "signals": null,
        "id": "example-response-5"
    }
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/example-response-6 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-6",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 112147,
            "unique_all_targets_count": 4,
            "client_id_count": 1,
            "unique_known_targets_count": 4,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 249429,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "false",
                "attributes": {
                    "country_count_1_day": 1,
                    "country_count_1_week": 1,
                    "country_count_4_week": 1,
                    "country_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "false",
                "attributes": {
                    "device_type_count_1_day": 1,
                    "device_type_count_1_week": 1,
                    "device_type_count_4_week": 1,
                    "device_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "false",
                "attributes": {
                    "browser_type_count_1_day": 1,
                    "browser_type_count_1_week": 1,
                    "browser_type_count_4_week": 1,
                    "browser_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "false",
                "attributes": {
                    "browser_version_count_1_day": 1,
                    "browser_version_count_1_week": 1,
                    "browser_version_count_4_week": 1,
                    "browser_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "false",
                "attributes": {
                    "ip_address_count_1_day": 1,
                    "ip_address_count_1_week": 1,
                    "ip_address_count_4_week": 1,
                    "ip_address_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "false",
                "attributes": {
                    "registered_user_id_count_1_day": 1,
                    "registered_user_id_count_1_week": 1,
                    "registered_user_id_count_4_week": 1,
                    "registered_user_id_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "false",
                "attributes": {
                    "device_count_1_day": 1,
                    "device_count_1_week": 1,
                    "device_count_4_week": 1,
                    "device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "false",
                "attributes": {
                    "os_type_count_1_day": 1,
                    "os_type_count_1_week": 1,
                    "os_type_count_4_week": 1,
                    "os_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "false",
                "attributes": {
                    "os_version_count_1_day": 1,
                    "os_version_count_1_week": 1,
                    "os_version_count_4_week": 1,
                    "os_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "false",
                "attributes": {
                    "distance_km_between_sessions": 0.2343,
                    "time_hr_between_sessions": 1
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "false",
                "attributes": {
                    "user_agent_count_1_day": 1,
                    "user_agent_count_1_week": 1,
                    "user_agent_count_4_week": 1,
                    "user_agent_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "false",
                "attributes": {
                    "sessions_per_device_count_1_day": 1,
                    "sessions_per_device_count_1_week": 1,
                    "sessions_per_device_count_4_week": 1,
                    "sessions_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": true,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "high risk",
                "attributes": {},
                "score": 5
            },
            {
                "version": "1.0",
                "model": "ato_risk",
                "label": "low",
                "attributes": {},
                "score": 0
            },
            {
                "version": "1.0",
                "model": "remote_access",
                "label": "false",
                "attributes": {},
                "score": 0
            }
        ],
        "id": "example-response-6"
    }
}
siteId value form_neuro500 on the v4.1 users endpoint
// Request
// NOTE: In the case below, "example-response-1" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/users/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-1",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "false",
                "attributes": {
                    "country_count_1_day": 1,
                    "country_count_1_week": 1,
                    "country_count_4_week": 1,
                    "country_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "false",
                "attributes": {
                    "device_type_count_1_day": 1,
                    "device_type_count_1_week": 1,
                    "device_type_count_4_week": 1,
                    "device_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "false",
                "attributes": {
                    "browser_type_count_1_day": 1,
                    "browser_type_count_1_week": 1,
                    "browser_type_count_4_week": 1,
                    "browser_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "false",
                "attributes": {
                    "browser_version_count_1_day": 1,
                    "browser_version_count_1_week": 1,
                    "browser_version_count_4_week": 1,
                    "browser_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "false",
                "attributes": {
                    "ip_address_count_1_day": 1,
                    "ip_address_count_1_week": 1,
                    "ip_address_count_4_week": 1,
                    "ip_address_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "false",
                "attributes": {
                    "registered_user_id_count_1_day": 1,
                    "registered_user_id_count_1_week": 1,
                    "registered_user_id_count_4_week": 1,
                    "registered_user_id_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "false",
                "attributes": {
                    "device_count_1_day": 1,
                    "device_count_1_week": 1,
                    "device_count_4_week": 1,
                    "device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "false",
                "attributes": {
                    "os_type_count_1_day": 1,
                    "os_type_count_1_week": 1,
                    "os_type_count_4_week": 1,
                    "os_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "false",
                "attributes": {
                    "os_version_count_1_day": 1,
                    "os_version_count_1_week": 1,
                    "os_version_count_4_week": 1,
                    "os_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "false",
                "attributes": {
                    "distance_km_between_sessions": 0.2343,
                    "time_hr_between_sessions": 1
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "false",
                "attributes": {
                    "user_agent_count_1_day": 1,
                    "user_agent_count_1_week": 1,
                    "user_agent_count_4_week": 1,
                    "user_agent_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "false",
                "attributes": {
                    "sessions_per_device_count_1_day": 1,
                    "sessions_per_device_count_1_week": 1,
                    "sessions_per_device_count_4_week": 1,
                    "sessions_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "low risk",
                "attributes": {},
                "score": 75
            },
            {
                "version": "1.0",
                "model": "ato_risk",
                "label": "low",
                "attributes": {},
                "score": 0
            },
            {
                "version": "1.0.0",
                "model": "remote_access",
                "label": "false",
                "attributes": {},
                "score": 0
            }
        ],
        "id": "example-response-1"
    }
}
// Request
// NOTE: In the case below, "example-response-2" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/users/example-response-2 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-2",
        "deviceId": "example-device-2",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "true",
                "attributes": {
                    "country_count_1_day": 3,
                    "country_count_1_week": 5,
                    "country_count_4_week": 6,
                    "country_count_12_week": 6
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "true",
                "attributes": {
                    "device_type_count_1_day": 2,
                    "device_type_count_1_week": 4,
                    "device_type_count_4_week": 5,
                    "device_type_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "true",
                "attributes": {
                    "browser_type_count_1_day": 2,
                    "browser_type_count_1_week": 4,
                    "browser_type_count_4_week": 5,
                    "browser_type_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "true",
                "attributes": {
                    "browser_version_count_1_day": 2,
                    "browser_version_count_1_week": 4,
                    "browser_version_count_4_week": 5,
                    "browser_version_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "true",
                "attributes": {
                    "ip_address_count_1_day": 2,
                    "ip_address_count_1_week": 4,
                    "ip_address_count_4_week": 5,
                    "ip_address_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "true",
                "attributes": {
                    "registered_user_id_count_1_day": 6,
                    "registered_user_id_count_1_week": 8,
                    "registered_user_id_count_4_week": 9,
                    "registered_user_id_count_12_week": 13
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "true",
                "attributes": {
                    "device_count_1_day": 4,
                    "device_count_1_week": 5,
                    "device_count_4_week": 6,
                    "device_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "true",
                "attributes": {
                    "os_type_count_1_day": 2,
                    "os_type_count_1_week": 4,
                    "os_type_count_4_week": 5,
                    "os_type_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "false",
                "attributes": {
                    "os_version_count_1_day": 2,
                    "os_version_count_1_week": 4,
                    "os_version_count_4_week": 5,
                    "os_version_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "true",
                "attributes": {
                    "distance_km_between_sessions": 5570.240282804509,
                    "time_hr_between_sessions": 1
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "true",
                "attributes": {
                    "user_agent_count_1_day": 2,
                    "user_agent_count_1_week": 4,
                    "user_agent_count_4_week": 5,
                    "user_agent_count_12_week": 8
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "true",
                "attributes": {
                    "sessions_per_device_count_1_day": 8,
                    "sessions_per_device_count_1_week": 10,
                    "sessions_per_device_count_4_week": 11,
                    "sessions_per_device_count_12_week": 11
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": true,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "true",
                "attributes": {
                    "aws_ip_set": true,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "high risk",
                "attributes": {},
                "score": 5
            },
          	{
                "version": "1.0",
                "model": "ato_risk",
                "label": "high",
                "attributes": {},
                "score": 1
            },
            {
                "version": "1.0.0",
                "model": "remote_access",
                "label": "true",
                "attributes": {},
                "score": 1
            }
        ],
        "id": "example-response-2"
    }
}
// Request
// NOTE: In the case below, "example-response-3" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/users/example-response-3 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-3",
        "deviceId": "example-device-3",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "error": "Insufficient data: Geolocation lookup has not completed"
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "country_count_1_day": 1,
                    "country_count_1_week": 1,
                    "country_count_4_week": 1,
                    "country_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "device_type_count_1_day": 1,
                    "device_type_count_1_week": 1,
                    "device_type_count_4_week": 1,
                    "device_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "browser_type_count_1_day": 1,
                    "browser_type_count_1_week": 1,
                    "browser_type_count_4_week": 1,
                    "browser_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "browser_version_count_1_day": 1,
                    "browser_version_count_1_week": 1,
                    "browser_version_count_4_week": 1,
                    "browser_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "ip_address_count_1_day": 1,
                    "ip_address_count_1_week": 1,
                    "ip_address_count_4_week": 1,
                    "ip_address_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "false",
                "attributes": {
                    "registered_user_id_count_1_day": 1,
                    "registered_user_id_count_1_week": 1,
                    "registered_user_id_count_4_week": 1,
                    "registered_user_id_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "true",
                "attributes": {
                    "device_count_1_day": 1,
                    "device_count_1_week": 1,
                    "device_count_4_week": 1,
                    "device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "os_type_count_1_day": 1,
                    "os_type_count_1_week": 1,
                    "os_type_count_4_week": 1,
                    "os_type_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "os_version_count_1_day": 1,
                    "os_version_count_1_week": 1,
                    "os_version_count_4_week": 1,
                    "os_version_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "distance_km_between_sessions": null,
                    "time_hr_between_sessions": null
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "error",
                "error": "Insufficient data: First observed session for user",
                "attributes": {
                    "user_agent_count_1_day": 1,
                    "user_agent_count_1_week": 1,
                    "user_agent_count_4_week": 1,
                    "user_agent_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "false",
                "attributes": {
                    "sessions_per_device_count_1_day": 1,
                    "sessions_per_device_count_1_week": 1,
                    "sessions_per_device_count_4_week": 1,
                    "sessions_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "insufficient data",
                "attributes": {},
                "score": null
            },
          	{
                "version": "1.0",
                "model": "ato_risk",
                "label": "insufficient data",
                "attributes": {}
            },
        	  {
                "version": "1.0.0",
                "model": "remote_access",
                "label": "insufficient data",
                "attributes": {}
            }
        ],
        "id": "example-response-3"
    }
}
// Request
// NOTE: In the case below, "example-response-4" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/users/example-response-4 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro500",
        "funnel": null,
        "clientId": "example-response-4",
        "deviceId": "example-device-4",
        "interactionAttributes": {
            "interaction_time_ms": 32487,
            "unique_all_targets_count": 5,
            "client_id_count": 1,
            "unique_known_targets_count": 5,
            "unique_unknown_targets_count": 0,
            "session_id_count": 1,
            "elapsed_time_ms": 54428,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "1.0",
                "model": "country_change",
                "label": "false",
                "attributes": {
                    "country_count_1_day": 1,
                    "country_count_1_week": 1,
                    "country_count_4_week": 1,
                    "country_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "device_type_change",
                "label": "true",
                "attributes": {
                    "device_type_count_1_day": 2,
                    "device_type_count_1_week": 2,
                    "device_type_count_4_week": 2,
                    "device_type_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "browser_type_change",
                "label": "false",
                "attributes": {
                    "browser_type_count_1_day": 1,
                    "browser_type_count_1_week": 1,
                    "browser_type_count_4_week": 2,
                    "browser_type_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "browser_version_change",
                "label": "false",
                "attributes": {
                    "browser_version_count_1_day": 1,
                    "browser_version_count_1_week": 1,
                    "browser_version_count_4_week": 2,
                    "browser_version_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "ip_address_change",
                "label": "true",
                "attributes": {
                    "ip_address_count_1_day": 2,
                    "ip_address_count_1_week": 2,
                    "ip_address_count_4_week": 2,
                    "ip_address_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "multiple_users_per_device",
                "label": "false",
                "attributes": {
                    "registered_user_id_count_1_day": 1,
                    "registered_user_id_count_1_week": 2,
                    "registered_user_id_count_4_week": 2,
                    "registered_user_id_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "new_device",
                "label": "false",
                "attributes": {
                    "device_count_1_day": 2,
                    "device_count_1_week": 2,
                    "device_count_4_week": 2,
                    "device_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "os_type_change",
                "label": "false",
                "attributes": {
                    "os_type_count_1_day": 1,
                    "os_type_count_1_week": 1,
                    "os_type_count_4_week": 1,
                    "os_type_count_12_week": 2
                }
            },
            {
                "version": "1.0",
                "model": "os_version_change",
                "label": "true",
                "attributes": {
                    "os_version_count_1_day": 2,
                    "os_version_count_1_week": 2,
                    "os_version_count_4_week": 2,
                    "os_version_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "rapid_location_change",
                "label": "false",
                "attributes": {
                    "distance_km_between_sessions": 0.2343,
                    "time_hr_between_sessions": 1
                }
            },
            {
                "version": "1.0",
                "model": "user_agent_change",
                "label": "true",
                "attributes": {
                    "user_agent_count_1_day": 2,
                    "user_agent_count_1_week": 2,
                    "user_agent_count_4_week": 2,
                    "user_agent_count_12_week": 3
                }
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "device_velocity",
                "label": "false",
                "attributes": {
                    "sessions_per_device_count_1_day": 1,
                    "sessions_per_device_count_1_week": 2,
                    "sessions_per_device_count_4_week": 2,
                    "sessions_per_device_count_12_week": 4
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "false",
                "attributes": {
                    "emulator": false,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "oracle_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "false",
                "attributes": {
                    "customer_blocklist": false,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "session_login_fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "neutral",
                "attributes": {},
                "score": 50
            },
            {
                "version": "1.0",
                "model": "ato_risk",
                "label": "medium",
                "attributes": {},
                "score": 0.5
            },
            {
                "version": "1.0.0",
                "model": "remote_access",
                "label": "false",
                "attributes": {},
                "score": 0
            }
        ],
        "id": "example-response-4"
    }
}
// Request
// NOTE: In the case below, "example-response-5" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro500/profiles/users/example-response-5 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SITE_NOT_CONFIGURED",
    "message": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
    "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#200-site_not_configured",
    "profile": {
        "siteId": "form_neuro400",
        "funnel": "",
        "clientId": "",
        "signals": null,
        "id": "example-response-5"
    }
}
// Request
// NOTE: In the case below, "example-response-6" is a userId.

curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro400/profiles/example-response-6 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "profile": {
        "siteId": "form_neuro400",
        "funnel": null,
        "clientId": "example-response-6",
        "deviceId": "example-device-1",
        "interactionAttributes": {
            "interaction_time_ms": 112147,
            "unique_all_targets_count": 4,
            "client_id_count": 1,
            "unique_known_targets_count": 4,
            "unique_unknown_targets_count": 0,
            "session_id_count": 2,
            "elapsed_time_ms": 249429,
            "user_id_count": 1,
            "ip_geolocation": {
                "accuracyRadius": 50,
                "latitude": 48.4106,
                "longitude": 114.3353,
                "postalCode": "59937",
                "timezone": "America/Denver",
                "city": {
                    "name": "Whitefish"
                },
                "country": {
                    "code": "US",
                    "name": "United States"
                },
                "continent": {
                    "code": "NA",
                    "name": "North America"
                },
                "subdivisions": [
                    {
                        "isoCode": "MT",
                        "name": "Montana"
                    }
                ]
            }
        },
        "signals": [
            {
                "version": "2.5.0",
                "model": "familiarity",
                "label": "low",
                "attributes": {
                    "other__timing__feature_2": null,
                    "other__timing__feature_1": null,
                    "other__timing__feature_4": null,
                    "other__timing__feature_3": null,
                    "pii__method_of_entry__feature_3": 3.75,
                    "pii__method_of_entry__feature_1": 2,
                    "pii__method_of_entry__feature_2": 3,
                    "other__typing_patterns__feature_9": null,
                    "device_type__is_pc": 1,
                    "other__typing_patterns__feature_8": null,
                    "other__typing_patterns__feature_7": null,
                    "other__typing_patterns__feature_6": null,
                    "other__typing_patterns__feature_5": null,
                    "other__typing_patterns__feature_4": null,
                    "all_text__typing_patterns__feature_2": 2.2456538170823883,
                    "all_text__typing_patterns__feature_1": null,
                    "other__typing_patterns__feature_3": null,
                    "other__interaction_patterns__feature_5": null,
                    "other__typing_patterns__feature_2": null,
                    "other__interaction_patterns__feature_6": null,
                    "other__typing_patterns__feature_1": null,
                    "other__interaction_patterns__feature_1": null,
                    "other__interaction_patterns__feature_2": null,
                    "other__interaction_patterns__feature_3": null,
                    "other__interaction_patterns__feature_4": null,
                    "pii__timing__feature_1": 0,
                    "pii__timing__feature_2": 25337,
                    "all_text__method_of_entry__feature_1": 0,
                    "pii__interaction_patterns__feature_5": 0.7142857142857143,
                    "other__method_of_entry__feature_1": null,
                    "pii__interaction_patterns__feature_2": 5,
                    "pii__interaction_patterns__feature_1": 1,
                    "all_text__method_of_entry__feature_2": 3,
                    "pii__interaction_patterns__feature_4": 1,
                    "all_text__method_of_entry__feature_3": 1,
                    "pii__interaction_patterns__feature_3": 61.70561832874972,
                    "pii__typing_patterns__feature_5": 2.2456538170823883,
                    "pii__typing_patterns__feature_4": null,
                    "pii__typing_patterns__feature_7": 300,
                    "pii__typing_patterns__feature_6": 2.2456538170823883,
                    "pii__typing_patterns__feature_9": 1.4,
                    "pii__typing_patterns__feature_8": 1.4,
                    "all_text__timing__feature_1": null,
                    "other__typing_patterns__feature_11": null,
                    "other__typing_patterns__feature_10": null,
                    "all_text__timing__feature_4": 0,
                    "pii__typing_patterns__feature_1": 200.11111111111111,
                    "all_text__timing__feature_5": 0.7505883167220376,
                    "all_text__timing__feature_2": 0,
                    "pii__typing_patterns__feature_3": 36.66060555964672,
                    "all_text__timing__feature_3": 0.07866864375364084,
                    "pii__typing_patterns__feature_2": 36.66060555964672,
                    "pii__transitions__feature_2": 6,
                    "pii__transitions__feature_1": 1
                },
                "score": 51.6
            },
            {
                "version": "1.0",
                "model": "fraud_ring_indicator",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "automated_activity",
                "label": "false",
                "attributes": {},
                "score": 0.0
            },
          	{
                "version": "1.0",
                "model": "behavioral_analytics_recognition",
                "label": "high risk",
                "attributes": {},
                "score": 5
            },
            {
                "version": "1.0",
                "model": "combined_digital_intent",
                "label": "risky",
                "attributes": {},
                "score": 2.0
            },
            {
                "version": "1.0",
                "model": "risky_device",
                "label": "false",
                "attributes": {
                    "risky_application_count": 0
                },
                "score": 0.0
            },
            {
                "version": "1.0",
                "model": "bot_framework",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "device_reputation",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "incognito",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "ip_address_association",
                "label": "false",
                "attributes": {
                    "aws_ip_set": false,
                    "azure_china_ip_set": false,
                    "azure_germany_ip_set": false,
                    "azure_government_ip_set": false,
                    "azure_public_ip_set": false,
                    "digital_ocean_ip_set": false,
                    "google_ip_set": false,
                    "vultr_ip_set": false
                }
            },
            {
                "version": "1.0",
                "model": "ip_blocklist",
                "label": "true",
                "attributes": {
                    "customer_blocklist": true,
                    "global_blocklist": false,
                    "partner_blocklist": false
                }
            },
            {
                "version": "1.0",
                "model": "multiple_ids_per_device",
                "label": "false",
                "attributes": {
                    "multiple_ids_per_device_count_1_day": 1,
                    "multiple_ids_per_device_count_1_week": 1,
                    "multiple_ids_per_device_count_4_week": 1,
                    "multiple_ids_per_device_count_12_week": 1
                }
            },
            {
                "version": "1.0",
                "model": "public_proxy",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "suspicious_device",
                "label": "true",
                "attributes": {
                    "emulator": true,
                    "jailbroken": false,
                    "missing_expected_properties": false,
                    "frida": false,
                    "high_risk_plugins": false
                }
            },
            {
                "version": "1.0",
                "model": "tor_exit_node",
                "label": "true",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "vpn",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "gps_spoofing",
                "label": "false",
                "attributes": {}
            },
            {
                "version": "1.0",
                "model": "factory_reset",
                "label": "false",
                "attributes": {
                    "time": 0,
                    "timestamp": 0
                }
            },
            {
                "version": "1.0",
                "model": "ato_risk",
                "label": "low",
                "attributes": {},
                "score": 0
            },
            {
                "version": "1.0",
                "model": "remote_access",
                "label": "false",
                "attributes": {},
                "score": 0
            }
        ],
        "id": "example-response-6"
    }
}

v5

siteId value form_neuro400 and form_neuro500 on the v5 profiles endpoint for users
// Request
curl --request GET \
  --url https://api.neuro-id.com/v5/profiles/users/example-response-1?api_checkpoint_name=test \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "useCaseResults": [
        {
            "siteId": "form_neuro400",
            "funnel": null,
            "clientId": "example-response-1",
            "useCaseName": "Account Onboarding with Device Site",
            "registeredUserId": "example-response-1",
            "productType": "AO",
            "deviceId": "example-device-1",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "accuracyRadius": 50,
                    "latitude": 48.4106,
                    "longitude": 114.3353,
                    "postalCode": "59937",
                    "timezone": "America/Denver",
                    "city": {
                        "name": "Whitefish"
                    },
                    "country": {
                        "code": "US",
                        "name": "United States"
                    },
                    "continent": {
                        "code": "NA",
                        "name": "North America"
                    },
                    "subdivisions": [
                        {
                            "isoCode": "MT",
                            "name": "Montana"
                        }
                    ]
                }
            },
            "signals": {
                "risky_device": {
                    "version": "1.0",
                    "model": "risky_device",
                    "label": "false",
                    "attributes": {
                        "risky_application_count": 0
                    },
                    "score": 0.0
                },
                "familiarity": {
                    "version": "2.5.0",
                    "model": "familiarity",
                    "label": "high",
                    "attributes": {
                        "other__timing__feature_2": 1,
                        "other__timing__feature_1": 0.4711393170142037,
                        "other__timing__feature_4": 0,
                        "other__timing__feature_3": 0.3517169614984391,
                        "pii__method_of_entry__feature_3": 0.6,
                        "pii__method_of_entry__feature_1": 0,
                        "pii__method_of_entry__feature_2": 0,
                        "other__typing_patterns__feature_9": 0,
                        "device_type__is_pc": 0,
                        "other__typing_patterns__feature_8": 0,
                        "other__typing_patterns__feature_7": 0,
                        "other__typing_patterns__feature_6": 0,
                        "other__typing_patterns__feature_5": 51.364365971107546,
                        "other__typing_patterns__feature_4": 0.48948194662480377,
                        "all_text__typing_patterns__feature_2": 0.48948194662480377,
                        "all_text__typing_patterns__feature_1": 175.1922488983861,
                        "other__interaction_patterns__feature_5": 0,
                        "other__typing_patterns__feature_3": 272.9413856490071,
                        "other__interaction_patterns__feature_6": 0,
                        "other__typing_patterns__feature_2": 23.5,
                        "other__typing_patterns__feature_1": 320.3333333333333,
                        "other__interaction_patterns__feature_1": 1,
                        "other__interaction_patterns__feature_2": 0,
                        "other__interaction_patterns__feature_3": 0,
                        "other__interaction_patterns__feature_4": 0,
                        "pii__timing__feature_1": 0.783121916842847,
                        "pii__timing__feature_2": 2,
                        "all_text__method_of_entry__feature_1": 6,
                        "pii__interaction_patterns__feature_5": 0,
                        "other__method_of_entry__feature_1": 0,
                        "pii__interaction_patterns__feature_2": 2,
                        "pii__interaction_patterns__feature_1": 0,
                        "all_text__method_of_entry__feature_2": 0,
                        "pii__interaction_patterns__feature_4": 0,
                        "all_text__method_of_entry__feature_3": 0,
                        "pii__interaction_patterns__feature_3": 0,
                        "pii__typing_patterns__feature_5": 0.5811942230632509,
                        "pii__typing_patterns__feature_4": 234.7151656087466,
                        "pii__typing_patterns__feature_7": 48.74086108854589,
                        "pii__typing_patterns__feature_6": 0.48948194662480377,
                        "pii__typing_patterns__feature_9": -0.014812456896697216,
                        "pii__typing_patterns__feature_8": 0.0966871369294604,
                        "all_text__timing__feature_1": 1.5,
                        "other__typing_patterns__feature_11": 0,
                        "other__typing_patterns__feature_10": 0,
                        "pii__typing_patterns__feature_1": 34,
                        "all_text__timing__feature_4": 0,
                        "all_text__timing__feature_5": 0,
                        "pii__typing_patterns__feature_3": 102.25849597955174,
                        "all_text__timing__feature_2": 1864,
                        "pii__typing_patterns__feature_2": 313.8378732543909,
                        "all_text__timing__feature_3": 0.2620955039500008,
                        "pii__transitions__feature_2": 1,
                        "pii__transitions__feature_1": 0
                    },
                    "score": 97.68
                },
                "public_proxy": {
                    "version": "1.0",
                    "model": "public_proxy",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "tor_exit_node": {
                    "version": "1.0",
                    "model": "tor_exit_node",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "ip_blocklist": {
                    "version": "1.0",
                    "model": "ip_blocklist",
                    "label": "false",
                    "attributes": {
                        "partner_blocklist": false
                    },
                    "score": null
                },
                "combined_digital_intent": {
                    "version": "1.0",
                    "model": "combined_digital_intent",
                    "label": "genuine",
                    "attributes": {},
                    "score": 0.0
                },
                "incognito": {
                    "version": "1.0",
                    "model": "incognito",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "suspicious_device": {
                    "version": "1.0",
                    "model": "suspicious_device",
                    "label": "false",
                    "attributes": {
                        "emulator": false,
                        "jailbroken": false,
                        "missing_expected_properties": false,
                        "frida": false,
                        "high_risk_plugins": false
                    },
                    "score": null
                },
                "factory_reset": {
                    "version": "1.0",
                    "model": "factory_reset",
                    "label": "false",
                    "attributes": {
                        "time": 0,
                        "timestamp": 0
                    },
                    "score": null
                },
                "multiple_ids_per_device": {
                    "version": "1.0",
                    "model": "multiple_ids_per_device",
                    "label": "false",
                    "attributes": {
                        "multiple_ids_per_device_count_1_day": 1,
                        "multiple_ids_per_device_count_1_week": 1,
                        "multiple_ids_per_device_count_4_week": 1,
                        "multiple_ids_per_device_count_12_week": 1
                    },
                    "score": null
                },
                "ip_address_association": {
                    "version": "1.0",
                    "model": "ip_address_association",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "fraud_ring_indicator",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "gps_spoofing": {
                    "version": "1.0",
                    "model": "gps_spoofing",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "device_reputation": {
                    "version": "1.0",
                    "model": "device_reputation",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "vpn": {
                    "version": "1.0",
                    "model": "vpn",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "bot_framework": {
                    "version": "1.0",
                    "model": "bot_framework",
                    "label": "false",
                    "attributes": {},
                    "score": null
                }
            },
            "id": "example-response-1"
        },
        {
            "siteId": "form_neuro500",
            "funnel": null,
            "clientId": "example-response-1",
            "useCaseName": "Account Defense with Device Site",
            "registeredUserId": "example-response-1",
            "productType": "AD_LOGIN",
            "deviceId": "example-device-1",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "accuracyRadius": 50,
                    "latitude": 48.4106,
                    "longitude": 114.3353,
                    "postalCode": "59937",
                    "timezone": "America/Denver",
                    "city": {
                        "name": "Whitefish"
                    },
                    "country": {
                        "code": "US",
                        "name": "United States"
                    },
                    "continent": {
                        "code": "NA",
                        "name": "North America"
                    },
                    "subdivisions": [
                        {
                            "isoCode": "MT",
                            "name": "Montana"
                        }
                    ]
                }
            },
            "signals": {
                "new_device": {
                    "version": "1.0",
                    "model": "new_device",
                    "label": "false",
                    "attributes": {
                        "device_count_1_day": 1,
                        "device_count_1_week": 1,
                        "device_count_4_week": 1,
                        "device_count_12_week": 1
                    },
                    "score": null
                },
                "os_version_change": {
                    "version": "1.0",
                    "model": "os_version_change",
                    "label": "false",
                    "attributes": {
                        "os_version_count_1_day": 1,
                        "os_version_count_1_week": 1,
                        "os_version_count_4_week": 1,
                        "os_version_count_12_week": 1
                    },
                    "score": null
                },
                "rapid_location_change": {
                    "version": "1.0",
                    "model": "rapid_location_change",
                    "label": "false",
                    "attributes": {
                        "distance_km_between_sessions": 0.2343,
                        "time_hr_between_sessions": 1
                    },
                    "score": null
                },
                "behavioral_analytics_recognition": {
                    "version": "1.0",
                    "model": "behavioral_analytics_recognition",
                    "label": "low risk",
                    "attributes": {},
                    "score": 75
                },
                "os_type_change": {
                    "version": "1.0",
                    "model": "os_type_change",
                    "label": "false",
                    "attributes": {
                        "os_type_count_1_day": 1,
                        "os_type_count_1_week": 1,
                        "os_type_count_4_week": 1,
                        "os_type_count_12_week": 1
                    },
                    "score": null
                },
                "public_proxy": {
                    "version": "1.0",
                    "model": "public_proxy",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "tor_exit_node": {
                    "version": "1.0",
                    "model": "tor_exit_node",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "ip_blocklist": {
                    "version": "1.0",
                    "model": "ip_blocklist",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "device_type_change": {
                    "version": "1.0",
                    "model": "device_type_change",
                    "label": "false",
                    "attributes": {
                        "device_type_count_1_day": 1,
                        "device_type_count_1_week": 1,
                        "device_type_count_4_week": 1,
                        "device_type_count_12_week": 1
                    },
                    "score": null
                },
                "incognito": {
                    "version": "1.0",
                    "model": "incognito",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "suspicious_device": {
                    "version": "1.0",
                    "model": "suspicious_device",
                    "label": "false",
                    "attributes": {
                        "emulator": false,
                        "jailbroken": false,
                        "missing_expected_properties": false,
                        "frida": false,
                        "high_risk_plugins": false
                    },
                    "score": null
                },
                "multiple_users_per_device": {
                    "version": "1.0",
                    "model": "multiple_users_per_device",
                    "label": "false",
                    "attributes": {
                        "registered_user_id_count_1_day": 1,
                        "registered_user_id_count_1_week": 1,
                        "registered_user_id_count_4_week": 1,
                        "registered_user_id_count_12_week": 1
                    },
                    "score": null
                },
                "ip_address_association": {
                    "version": "1.0",
                    "model": "ip_address_association",
                    "label": "false",
                    "attributes": {
                        "aws_ip_set": false,
                        "azure_china_ip_set": false,
                        "azure_germany_ip_set": false,
                        "azure_government_ip_set": false,
                        "azure_public_ip_set": false,
                        "digital_ocean_ip_set": false,
                        "google_ip_set": false,
                        "oracle_ip_set": false,
                        "vultr_ip_set": false
                    },
                    "score": null
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "ip_address_change": {
                    "version": "1.0",
                    "model": "ip_address_change",
                    "label": "false",
                    "attributes": {
                        "ip_address_count_1_day": 1,
                        "ip_address_count_1_week": 1,
                        "ip_address_count_4_week": 1,
                        "ip_address_count_12_week": 1
                    },
                    "score": null
                },
                "device_reputation": {
                    "version": "1.0",
                    "model": "device_reputation",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "vpn": {
                    "version": "1.0",
                    "model": "vpn",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "device_velocity": {
                    "version": "1.0",
                    "model": "device_velocity",
                    "label": "false",
                    "attributes": {
                        "sessions_per_device_count_1_day": 1,
                        "sessions_per_device_count_1_week": 1,
                        "sessions_per_device_count_4_week": 1,
                        "sessions_per_device_count_12_week": 1
                    },
                    "score": null
                },
                "country_change": {
                    "version": "1.0",
                    "model": "country_change",
                    "label": "false",
                    "attributes": {
                        "country_count_1_day": 1,
                        "country_count_1_week": 1,
                        "country_count_4_week": 1,
                        "country_count_12_week": 1
                    },
                    "score": null
                },
                "bot_framework": {
                    "version": "1.0",
                    "model": "bot_framework",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "browser_version_change": {
                    "version": "1.0",
                    "model": "browser_version_change",
                    "label": "false",
                    "attributes": {
                        "browser_version_count_1_day": 1,
                        "browser_version_count_1_week": 1,
                        "browser_version_count_4_week": 1,
                        "browser_version_count_12_week": 1
                    },
                    "score": null
                },
                "session_login_fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "session_login_fraud_ring_indicator",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "browser_type_change": {
                    "version": "1.0",
                    "model": "browser_type_change",
                    "label": "false",
                    "attributes": {
                        "browser_type_count_1_day": 1,
                        "browser_type_count_1_week": 1,
                        "browser_type_count_4_week": 1,
                        "browser_type_count_12_week": 1
                    },
                    "score": null
                },
                "user_agent_change": {
                    "version": "1.0",
                    "model": "user_agent_change",
                    "label": "false",
                    "attributes": {
                        "user_agent_count_1_day": 1,
                        "user_agent_count_1_week": 1,
                        "user_agent_count_4_week": 1,
                        "user_agent_count_12_week": 1
                    },
                    "score": null
                },
                "remote_access": {
                    "version": "1.0.0",
                    "model": "remote_access",
                    "label": "false",
                    "attributes": {},
                    "score": 0
                },
                "ato_risk": {
                    "version": "1.0",
                    "model": "ato_risk",
                    "label": "low",
                    "attributes": {},
                    "score": 0
                },
            },
            "id": "example-response-1"
        }
    ]
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v5/profiles/users/example-response-2?api_checkpoint_name=test \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "useCaseResults": [
        {
            "siteId": "form_neuro400",
            "funnel": null,
            "clientId": "example-response-2",
            "useCaseName": "Account Onboarding with Device Site",
            "registeredUserId": "example-response-2",
            "productType": "AO",
            "deviceId": "example-device-2",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "accuracyRadius": 50,
                    "latitude": 48.4106,
                    "longitude": 114.3353,
                    "postalCode": "59937",
                    "timezone": "America/Denver",
                    "city": {
                        "name": "Whitefish"
                    },
                    "country": {
                        "code": "US",
                        "name": "United States"
                    },
                    "continent": {
                        "code": "NA",
                        "name": "North America"
                    },
                    "subdivisions": [
                        {
                            "isoCode": "MT",
                            "name": "Montana"
                        }
                    ]
                }
            },
            "signals": {
                "risky_device": {
                    "version": "1.0",
                    "model": "risky_device",
                    "label": "false",
                    "attributes": {
                        "risky_application_count": 0
                    },
                    "score": 0.0
                },
                "familiarity": {
                    "version": "2.5.0",
                    "model": "familiarity",
                    "label": "low",
                    "attributes": {
                        "other__timing__feature_2": 1,
                        "other__timing__feature_1": 0.4711393170142037,
                        "other__timing__feature_4": null,
                        "other__timing__feature_3": 0.3517169614984391,
                        "pii__method_of_entry__feature_3": 0.6,
                        "pii__method_of_entry__feature_1": 0,
                        "pii__method_of_entry__feature_2": 0,
                        "device_type__is_pc": 0,
                        "other__typing_patterns__feature_9": null,
                        "other__typing_patterns__feature_8": null,
                        "other__typing_patterns__feature_7": null,
                        "other__typing_patterns__feature_6": null,
                        "other__typing_patterns__feature_5": 51.364365971107546,
                        "other__typing_patterns__feature_4": 0.48948194662480377,
                        "all_text__typing_patterns__feature_2": 0.48948194662480377,
                        "all_text__typing_patterns__feature_1": 175.1922488983861,
                        "other__typing_patterns__feature_3": 272.9413856490071,
                        "other__interaction_patterns__feature_5": null,
                        "other__typing_patterns__feature_2": 23.5,
                        "other__interaction_patterns__feature_6": null,
                        "other__typing_patterns__feature_1": 320.3333333333333,
                        "other__interaction_patterns__feature_1": 1,
                        "other__interaction_patterns__feature_2": null,
                        "other__interaction_patterns__feature_3": null,
                        "other__interaction_patterns__feature_4": null,
                        "pii__timing__feature_1": 0.783121916842847,
                        "pii__timing__feature_2": null,
                        "pii__interaction_patterns__feature_5": null,
                        "all_text__method_of_entry__feature_1": 6,
                        "other__method_of_entry__feature_1": null,
                        "pii__interaction_patterns__feature_2": 2,
                        "pii__interaction_patterns__feature_1": 0,
                        "pii__interaction_patterns__feature_4": 0,
                        "all_text__method_of_entry__feature_2": 0,
                        "pii__interaction_patterns__feature_3": 0,
                        "all_text__method_of_entry__feature_3": 0,
                        "pii__typing_patterns__feature_5": 0.5811942230632509,
                        "pii__typing_patterns__feature_4": 234.7151656087466,
                        "pii__typing_patterns__feature_7": 48.74086108854589,
                        "pii__typing_patterns__feature_6": 0.48948194662480377,
                        "pii__typing_patterns__feature_9": -0.014812456896697216,
                        "pii__typing_patterns__feature_8": 0.0966871369294604,
                        "all_text__timing__feature_1": 1.5,
                        "other__typing_patterns__feature_11": null,
                        "pii__typing_patterns__feature_1": 34,
                        "other__typing_patterns__feature_10": null,
                        "all_text__timing__feature_4": 0,
                        "all_text__timing__feature_5": 0,
                        "pii__typing_patterns__feature_3": 102.25849597955174,
                        "all_text__timing__feature_2": 1864,
                        "pii__typing_patterns__feature_2": 313.8378732543909,
                        "all_text__timing__feature_3": 0.2620955039500008,
                        "pii__transitions__feature_2": 1,
                        "pii__transitions__feature_1": 0
                    },
                    "score": 97.68
                },
                "public_proxy": {
                    "version": "1.0",
                    "model": "public_proxy",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "tor_exit_node": {
                    "version": "1.0",
                    "model": "tor_exit_node",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "ip_blocklist": {
                    "version": "1.0",
                    "model": "ip_blocklist",
                    "label": "true",
                    "attributes": {
                        "customer_blocklist": true,
                        "global_blocklist": false,
                        "partner_blocklist": false
                    },
                    "score": null
                },
                "combined_digital_intent": {
                    "version": "1.0",
                    "model": "combined_digital_intent",
                    "label": "risky",
                    "attributes": {},
                    "score": 0.0
                },
                "incognito": {
                    "version": "1.0",
                    "model": "incognito",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "suspicious_device": {
                    "version": "1.0",
                    "model": "suspicious_device",
                    "label": "true",
                    "attributes": {
                        "emulator": false,
                        "jailbroken": false,
                        "missing_expected_properties": true,
                        "frida": false,
                        "high_risk_plugins": false
                    },
                    "score": null
                },
                "factory_reset": {
                    "version": "1.0",
                    "model": "factory_reset",
                    "label": "true",
                    "attributes": {
                        "time": "2023-07-19T011:00:00Z",
                        "timestamp": 1689445704
                    },
                    "score": null
                },
                "multiple_ids_per_device": {
                    "version": "1.0",
                    "model": "multiple_ids_per_device",
                    "label": "true",
                    "attributes": {
                        "multiple_ids_per_device_count_1_day": 9,
                        "multiple_ids_per_device_count_1_week": 15,
                        "multiple_ids_per_device_count_4_week": 15,
                        "multiple_ids_per_device_count_12_week": 15
                    },
                    "score": null
                },
                "ip_address_association": {
                    "version": "1.0",
                    "model": "ip_address_association",
                    "label": "true",
                    "attributes": {
                        "aws_ip_set": true,
                        "azure_china_ip_set": false,
                        "azure_germany_ip_set": false,
                        "azure_government_ip_set": false,
                        "azure_public_ip_set": false,
                        "digital_ocean_ip_set": false,
                        "google_ip_set": false,
                        "vultr_ip_set": false
                    },
                    "score": null
                },
                "fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "fraud_ring_indicator",
                    "label": "true",
                    "attributes": {},
                    "score": 1.0
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "true",
                    "attributes": {},
                    "score": 1.0
                },
                "gps_spoofing": {
                    "version": "1.0",
                    "model": "gps_spoofing",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "device_reputation": {
                    "version": "1.0",
                    "model": "device_reputation",
                    "label": "true",
                    "attributes": {
                        "customer_blocklist": true,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "vpn": {
                    "version": "1.0",
                    "model": "vpn",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "bot_framework": {
                    "version": "1.0",
                    "model": "bot_framework",
                    "label": "true",
                    "attributes": {},
                    "score": null
                }
            },
            "id": "example-response-2"
        },
        {
            "siteId": "form_neuro500",
            "funnel": null,
            "clientId": "example-response-2",
            "useCaseName": "Account Defense with Device Site",
            "registeredUserId": "example-response-2",
            "productType": "AD_LOGIN",
            "deviceId": "example-device-2",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "accuracyRadius": 50,
                    "latitude": 48.4106,
                    "longitude": 114.3353,
                    "postalCode": "59937",
                    "timezone": "America/Denver",
                    "city": {
                        "name": "Whitefish"
                    },
                    "country": {
                        "code": "US",
                        "name": "United States"
                    },
                    "continent": {
                        "code": "NA",
                        "name": "North America"
                    },
                    "subdivisions": [
                        {
                            "isoCode": "MT",
                            "name": "Montana"
                        }
                    ]
                }
            },
            "signals": {
                "new_device": {
                    "version": "1.0",
                    "model": "new_device",
                    "label": "true",
                    "attributes": {
                        "device_count_1_day": 4,
                        "device_count_1_week": 5,
                        "device_count_4_week": 6,
                        "device_count_12_week": 8
                    },
                    "score": null
                },
                "os_version_change": {
                    "version": "1.0",
                    "model": "os_version_change",
                    "label": "false",
                    "attributes": {
                        "os_version_count_1_day": 2,
                        "os_version_count_1_week": 4,
                        "os_version_count_4_week": 5,
                        "os_version_count_12_week": 8
                    },
                    "score": null
                },
                "rapid_location_change": {
                    "version": "1.0",
                    "model": "rapid_location_change",
                    "label": "true",
                    "attributes": {
                        "distance_km_between_sessions": 5570.240282804509,
                        "time_hr_between_sessions": 1
                    },
                    "score": null
                },
                "behavioral_analytics_recognition": {
                    "version": "1.0",
                    "model": "behavioral_analytics_recognition",
                    "label": "high risk",
                    "attributes": {},
                    "score": 5
                },
                "os_type_change": {
                    "version": "1.0",
                    "model": "os_type_change",
                    "label": "true",
                    "attributes": {
                        "os_type_count_1_day": 2,
                        "os_type_count_1_week": 4,
                        "os_type_count_4_week": 5,
                        "os_type_count_12_week": 8
                    },
                    "score": null
                },
                "public_proxy": {
                    "version": "1.0",
                    "model": "public_proxy",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "tor_exit_node": {
                    "version": "1.0",
                    "model": "tor_exit_node",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "ip_blocklist": {
                    "version": "1.0",
                    "model": "ip_blocklist",
                    "label": "true",
                    "attributes": {
                        "customer_blocklist": true,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "device_type_change": {
                    "version": "1.0",
                    "model": "device_type_change",
                    "label": "true",
                    "attributes": {
                        "device_type_count_1_day": 2,
                        "device_type_count_1_week": 4,
                        "device_type_count_4_week": 5,
                        "device_type_count_12_week": 8
                    },
                    "score": null
                },
                "incognito": {
                    "version": "1.0",
                    "model": "incognito",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "suspicious_device": {
                    "version": "1.0",
                    "model": "suspicious_device",
                    "label": "true",
                    "attributes": {
                        "emulator": true,
                        "jailbroken": false,
                        "missing_expected_properties": false,
                        "frida": false,
                        "high_risk_plugins": false
                    },
                    "score": null
                },
                "multiple_users_per_device": {
                    "version": "1.0",
                    "model": "multiple_users_per_device",
                    "label": "true",
                    "attributes": {
                        "registered_user_id_count_1_day": 6,
                        "registered_user_id_count_1_week": 8,
                        "registered_user_id_count_4_week": 9,
                        "registered_user_id_count_12_week": 13
                    },
                    "score": null
                },
                "ip_address_association": {
                    "version": "1.0",
                    "model": "ip_address_association",
                    "label": "true",
                    "attributes": {
                        "aws_ip_set": true,
                        "azure_china_ip_set": false,
                        "azure_germany_ip_set": false,
                        "azure_government_ip_set": false,
                        "azure_public_ip_set": false,
                        "digital_ocean_ip_set": false,
                        "google_ip_set": false,
                        "oracle_ip_set": false,
                        "vultr_ip_set": false
                    },
                    "score": null
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "ip_address_change": {
                    "version": "1.0",
                    "model": "ip_address_change",
                    "label": "true",
                    "attributes": {
                        "ip_address_count_1_day": 2,
                        "ip_address_count_1_week": 4,
                        "ip_address_count_4_week": 5,
                        "ip_address_count_12_week": 8
                    },
                    "score": null
                },
                "device_reputation": {
                    "version": "1.0",
                    "model": "device_reputation",
                    "label": "true",
                    "attributes": {
                        "customer_blocklist": true,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "vpn": {
                    "version": "1.0",
                    "model": "vpn",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "device_velocity": {
                    "version": "1.0",
                    "model": "device_velocity",
                    "label": "true",
                    "attributes": {
                        "sessions_per_device_count_1_day": 8,
                        "sessions_per_device_count_1_week": 10,
                        "sessions_per_device_count_4_week": 11,
                        "sessions_per_device_count_12_week": 11
                    },
                    "score": null
                },
                "country_change": {
                    "version": "1.0",
                    "model": "country_change",
                    "label": "true",
                    "attributes": {
                        "country_count_1_day": 3,
                        "country_count_1_week": 5,
                        "country_count_4_week": 6,
                        "country_count_12_week": 6
                    },
                    "score": null
                },
                "bot_framework": {
                    "version": "1.0",
                    "model": "bot_framework",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "browser_version_change": {
                    "version": "1.0",
                    "model": "browser_version_change",
                    "label": "true",
                    "attributes": {
                        "browser_version_count_1_day": 2,
                        "browser_version_count_1_week": 4,
                        "browser_version_count_4_week": 5,
                        "browser_version_count_12_week": 8
                    },
                    "score": null
                },
                "session_login_fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "session_login_fraud_ring_indicator",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "browser_type_change": {
                    "version": "1.0",
                    "model": "browser_type_change",
                    "label": "true",
                    "attributes": {
                        "browser_type_count_1_day": 2,
                        "browser_type_count_1_week": 4,
                        "browser_type_count_4_week": 5,
                        "browser_type_count_12_week": 8
                    },
                    "score": null
                },
                "user_agent_change": {
                    "version": "1.0",
                    "model": "user_agent_change",
                    "label": "true",
                    "attributes": {
                        "user_agent_count_1_day": 2,
                        "user_agent_count_1_week": 4,
                        "user_agent_count_4_week": 5,
                        "user_agent_count_12_week": 8
                    },
                    "score": null
                },
                "remote_access": {
                    "version": "1.0.0",
                    "model": "remote_access",
                    "label": "true",
                    "attributes": {},
                    "score": 1
                },
                "ato_risk": {
                    "version": "1.0",
                    "model": "ato_risk",
                    "label": "high",
                    "attributes": {},
                    "score": 1
                },
            },
            "id": "example-response-2"
        }
    ]
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v5/profiles/users/example-response-3?api_checkpoint_name=test \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "useCaseResults": [
        {
            "siteId": "form_neuro400",
            "funnel": null,
            "clientId": "example-response-3",
            "useCaseName": "Account Onboarding with Device Site",
            "registeredUserId": "example-response-3",
            "productType": "AO",
            "deviceId": "example-device-3",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "error": "Insufficient data: Geolocation lookup has not completed"
                }
            },
            "signals": {
                "risky_device": {
                    "version": "1.0",
                    "model": "risky_device",
                    "label": "false",
                    "attributes": {
                        "risky_application_count": 0
                    },
                    "score": 0.0
                },
                "familiarity": {
                    "version": "2.5.0",
                    "model": "familiarity",
                    "label": "insufficient data",
                    "attributes": {
                        "other__timing__feature_2": 1,
                        "other__timing__feature_1": 0.4711393170142037,
                        "other__timing__feature_4": null,
                        "other__timing__feature_3": 0.3517169614984391,
                        "pii__method_of_entry__feature_3": 0.6,
                        "pii__method_of_entry__feature_1": 0,
                        "pii__method_of_entry__feature_2": 0,
                        "device_type__is_pc": 0,
                        "other__typing_patterns__feature_9": null,
                        "other__typing_patterns__feature_8": null,
                        "other__typing_patterns__feature_7": null,
                        "other__typing_patterns__feature_6": null,
                        "other__typing_patterns__feature_5": 51.364365971107546,
                        "other__typing_patterns__feature_4": 0.48948194662480377,
                        "all_text__typing_patterns__feature_2": 0.48948194662480377,
                        "all_text__typing_patterns__feature_1": 175.1922488983861,
                        "other__interaction_patterns__feature_5": null,
                        "other__typing_patterns__feature_3": 272.9413856490071,
                        "other__interaction_patterns__feature_6": null,
                        "other__typing_patterns__feature_2": 23.5,
                        "other__typing_patterns__feature_1": 320.3333333333333,
                        "other__interaction_patterns__feature_1": 1,
                        "other__interaction_patterns__feature_2": null,
                        "other__interaction_patterns__feature_3": null,
                        "other__interaction_patterns__feature_4": null,
                        "pii__timing__feature_1": 0.783121916842847,
                        "pii__timing__feature_2": null,
                        "pii__interaction_patterns__feature_5": null,
                        "all_text__method_of_entry__feature_1": 6,
                        "other__method_of_entry__feature_1": null,
                        "pii__interaction_patterns__feature_2": 2,
                        "pii__interaction_patterns__feature_1": 0,
                        "pii__interaction_patterns__feature_4": 0,
                        "all_text__method_of_entry__feature_2": 0,
                        "pii__interaction_patterns__feature_3": 0,
                        "all_text__method_of_entry__feature_3": 0,
                        "pii__typing_patterns__feature_5": 0.5811942230632509,
                        "pii__typing_patterns__feature_4": 234.7151656087466,
                        "pii__typing_patterns__feature_7": 48.74086108854589,
                        "pii__typing_patterns__feature_6": 0.48948194662480377,
                        "pii__typing_patterns__feature_9": -0.014812456896697216,
                        "pii__typing_patterns__feature_8": 0.0966871369294604,
                        "all_text__timing__feature_1": 1.5,
                        "other__typing_patterns__feature_11": null,
                        "pii__typing_patterns__feature_1": 34,
                        "all_text__timing__feature_4": 0,
                        "other__typing_patterns__feature_10": null,
                        "all_text__timing__feature_5": 0,
                        "pii__typing_patterns__feature_3": 102.25849597955174,
                        "all_text__timing__feature_2": 1864,
                        "pii__typing_patterns__feature_2": 313.8378732543909,
                        "all_text__timing__feature_3": 0.2620955039500008,
                        "pii__transitions__feature_2": 1,
                        "pii__transitions__feature_1": 0
                    },
                    "score": null
                },
                "combined_digital_intent": {
                    "version": "1.0",
                    "model": "combined_digital_intent",
                    "label": "insufficient data",
                    "attributes": {},
                    "score": null
                },
                "fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "fraud_ring_indicator",
                    "label": "insufficient data",
                    "attributes": {},
                    "score": null
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "insufficient data",
                    "attributes": {},
                    "score": null
                }
            },
            "id": "example-response-3"
        },
        {
            "siteId": "form_neuro500",
            "funnel": null,
            "clientId": "example-response-3",
            "useCaseName": "Account Defense with Device Site",
            "registeredUserId": "example-response-3",
            "productType": "AD_LOGIN",
            "deviceId": "example-device-3",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "error": "Insufficient data: Geolocation lookup has not completed"
                }
            },
            "signals": {
                "new_device": {
                    "version": "1.0",
                    "model": "new_device",
                    "label": "true",
                    "attributes": {
                        "device_count_1_day": 1,
                        "device_count_1_week": 1,
                        "device_count_4_week": 1,
                        "device_count_12_week": 1
                    },
                    "score": null
                },
                "os_version_change": {
                    "version": "1.0",
                    "model": "os_version_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "os_version_count_1_day": 1,
                        "os_version_count_1_week": 1,
                        "os_version_count_4_week": 1,
                        "os_version_count_12_week": 1
                    },
                    "score": null
                },
                "rapid_location_change": {
                    "version": "1.0",
                    "model": "rapid_location_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "distance_km_between_sessions": null,
                        "time_hr_between_sessions": null
                    },
                    "score": null
                },
                "behavioral_analytics_recognition": {
                    "version": "1.0",
                    "model": "behavioral_analytics_recognition",
                    "label": "insufficient data",
                    "attributes": {},
                    "score": null
                },
                "os_type_change": {
                    "version": "1.0",
                    "model": "os_type_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "os_type_count_1_day": 1,
                        "os_type_count_1_week": 1,
                        "os_type_count_4_week": 1,
                        "os_type_count_12_week": 1
                    },
                    "score": null
                },
                "public_proxy": {
                    "version": "1.0",
                    "model": "public_proxy",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "tor_exit_node": {
                    "version": "1.0",
                    "model": "tor_exit_node",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "ip_blocklist": {
                    "version": "1.0",
                    "model": "ip_blocklist",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "device_type_change": {
                    "version": "1.0",
                    "model": "device_type_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "device_type_count_1_day": 1,
                        "device_type_count_1_week": 1,
                        "device_type_count_4_week": 1,
                        "device_type_count_12_week": 1
                    },
                    "score": null
                },
                "incognito": {
                    "version": "1.0",
                    "model": "incognito",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "suspicious_device": {
                    "version": "1.0",
                    "model": "suspicious_device",
                    "label": "false",
                    "attributes": {
                        "emulator": false,
                        "jailbroken": false,
                        "missing_expected_properties": false,
                        "frida": false,
                        "high_risk_plugins": false
                    },
                    "score": null
                },
                "multiple_users_per_device": {
                    "version": "1.0",
                    "model": "multiple_users_per_device",
                    "label": "false",
                    "attributes": {
                        "registered_user_id_count_1_day": 1,
                        "registered_user_id_count_1_week": 1,
                        "registered_user_id_count_4_week": 1,
                        "registered_user_id_count_12_week": 1
                    },
                    "score": null
                },
                "ip_address_association": {
                    "version": "1.0",
                    "model": "ip_address_association",
                    "label": "false",
                    "attributes": {
                        "aws_ip_set": false,
                        "azure_china_ip_set": false,
                        "azure_germany_ip_set": false,
                        "azure_government_ip_set": false,
                        "azure_public_ip_set": false,
                        "digital_ocean_ip_set": false,
                        "google_ip_set": false,
                        "oracle_ip_set": false,
                        "vultr_ip_set": false
                    },
                    "score": null
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "ip_address_change": {
                    "version": "1.0",
                    "model": "ip_address_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "ip_address_count_1_day": 1,
                        "ip_address_count_1_week": 1,
                        "ip_address_count_4_week": 1,
                        "ip_address_count_12_week": 1
                    },
                    "score": null
                },
                "device_reputation": {
                    "version": "1.0",
                    "model": "device_reputation",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "vpn": {
                    "version": "1.0",
                    "model": "vpn",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "device_velocity": {
                    "version": "1.0",
                    "model": "device_velocity",
                    "label": "false",
                    "attributes": {
                        "sessions_per_device_count_1_day": 1,
                        "sessions_per_device_count_1_week": 1,
                        "sessions_per_device_count_4_week": 1,
                        "sessions_per_device_count_12_week": 1
                    },
                    "score": null
                },
                "country_change": {
                    "version": "1.0",
                    "model": "country_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "country_count_1_day": 1,
                        "country_count_1_week": 1,
                        "country_count_4_week": 1,
                        "country_count_12_week": 1
                    },
                    "score": null
                },
                "bot_framework": {
                    "version": "1.0",
                    "model": "bot_framework",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "browser_version_change": {
                    "version": "1.0",
                    "model": "browser_version_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "browser_version_count_1_day": 1,
                        "browser_version_count_1_week": 1,
                        "browser_version_count_4_week": 1,
                        "browser_version_count_12_week": 1
                    },
                    "score": null
                },
                "session_login_fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "session_login_fraud_ring_indicator",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "browser_type_change": {
                    "version": "1.0",
                    "model": "browser_type_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "browser_type_count_1_day": 1,
                        "browser_type_count_1_week": 1,
                        "browser_type_count_4_week": 1,
                        "browser_type_count_12_week": 1
                    },
                    "score": null
                },
                "user_agent_change": {
                    "version": "1.0",
                    "model": "user_agent_change",
                    "label": "error",
                    "error": "Insufficient data: First observed session for user",
                    "attributes": {
                        "user_agent_count_1_day": 1,
                        "user_agent_count_1_week": 1,
                        "user_agent_count_4_week": 1,
                        "user_agent_count_12_week": 1
                    },
                    "score": null
                },
                "remote_access": {
                    "version": "1.0.0",
                    "model": "remote_access",
                    "label": "insufficient data",
                    "attributes": {},
                    "score": null
                },
                "ato_risk": {
                    "version": "1.0",
                    "model": "ato_risk",
                    "label": "insufficient data",
                    "attributes": {},
                    "score": null
                },
            },
            "id": "example-response-3"
        }
    ]
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v5/profiles/users/example-response-4?api_checkpoint_name=test \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "useCaseResults": [
        {
            "siteId": "form_neuro400",
            "funnel": null,
            "clientId": "example-response-4",
            "useCaseName": "Account Onboarding with Device Site",
            "registeredUserId": "example-response-4",
            "productType": "AO",
            "deviceId": "example-device-4",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "accuracyRadius": 50,
                    "latitude": 48.4106,
                    "longitude": 114.3353,
                    "postalCode": "59937",
                    "timezone": "America/Denver",
                    "city": {
                        "name": "Whitefish"
                    },
                    "country": {
                        "code": "US",
                        "name": "United States"
                    },
                    "continent": {
                        "code": "NA",
                        "name": "North America"
                    },
                    "subdivisions": [
                        {
                            "isoCode": "MT",
                            "name": "Montana"
                        }
                    ]
                }
            },
            "signals": {
                "risky_device": {
                    "version": "1.0",
                    "model": "risky_device",
                    "label": "false",
                    "attributes": {
                        "risky_application_count": 0
                    },
                    "score": 0.0
                },
                "familiarity": {
                    "version": "2.5.0",
                    "model": "familiarity",
                    "label": "medium",
                    "attributes": {
                        "other__timing__feature_2": 1,
                        "other__timing__feature_1": 0.4711393170142037,
                        "other__timing__feature_4": null,
                        "other__timing__feature_3": 0.3517169614984391,
                        "pii__method_of_entry__feature_3": 0.6,
                        "pii__method_of_entry__feature_1": 0,
                        "pii__method_of_entry__feature_2": 0,
                        "device_type__is_pc": 0,
                        "other__typing_patterns__feature_9": null,
                        "other__typing_patterns__feature_8": null,
                        "other__typing_patterns__feature_7": null,
                        "other__typing_patterns__feature_6": null,
                        "other__typing_patterns__feature_5": 51.364365971107546,
                        "other__typing_patterns__feature_4": 0.48948194662480377,
                        "all_text__typing_patterns__feature_2": 0.48948194662480377,
                        "all_text__typing_patterns__feature_1": 175.1922488983861,
                        "other__interaction_patterns__feature_5": null,
                        "other__typing_patterns__feature_3": 272.9413856490071,
                        "other__interaction_patterns__feature_6": null,
                        "other__typing_patterns__feature_2": 23.5,
                        "other__typing_patterns__feature_1": 320.3333333333333,
                        "other__interaction_patterns__feature_1": 1,
                        "other__interaction_patterns__feature_2": null,
                        "other__interaction_patterns__feature_3": null,
                        "other__interaction_patterns__feature_4": null,
                        "pii__timing__feature_1": 0.783121916842847,
                        "pii__timing__feature_2": null,
                        "pii__interaction_patterns__feature_5": null,
                        "all_text__method_of_entry__feature_1": 6,
                        "other__method_of_entry__feature_1": null,
                        "pii__interaction_patterns__feature_2": 2,
                        "pii__interaction_patterns__feature_1": 0,
                        "pii__interaction_patterns__feature_4": 0,
                        "all_text__method_of_entry__feature_2": 0,
                        "pii__interaction_patterns__feature_3": 0,
                        "all_text__method_of_entry__feature_3": 0,
                        "pii__typing_patterns__feature_5": 0.5811942230632509,
                        "pii__typing_patterns__feature_4": 234.7151656087466,
                        "pii__typing_patterns__feature_7": 48.74086108854589,
                        "pii__typing_patterns__feature_6": 0.48948194662480377,
                        "pii__typing_patterns__feature_9": -0.014812456896697216,
                        "pii__typing_patterns__feature_8": 0.0966871369294604,
                        "all_text__timing__feature_1": 1.5,
                        "other__typing_patterns__feature_11": null,
                        "pii__typing_patterns__feature_1": 34,
                        "all_text__timing__feature_4": 0,
                        "other__typing_patterns__feature_10": null,
                        "all_text__timing__feature_5": 0,
                        "pii__typing_patterns__feature_3": 102.25849597955174,
                        "all_text__timing__feature_2": 1864,
                        "pii__typing_patterns__feature_2": 313.8378732543909,
                        "all_text__timing__feature_3": 0.2620955039500008,
                        "pii__transitions__feature_2": 1,
                        "pii__transitions__feature_1": 0
                    },
                    "score": 77.2
                },
                "public_proxy": {
                    "version": "1.0",
                    "model": "public_proxy",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "tor_exit_node": {
                    "version": "1.0",
                    "model": "tor_exit_node",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "ip_blocklist": {
                    "version": "1.0",
                    "model": "ip_blocklist",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false,
                        "partner_blocklist": false
                    },
                    "score": null
                },
                "combined_digital_intent": {
                    "version": "1.0",
                    "model": "combined_digital_intent",
                    "label": "neutral",
                    "attributes": {},
                    "score": 78.0
                },
                "incognito": {
                    "version": "1.0",
                    "model": "incognito",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "suspicious_device": {
                    "version": "1.0",
                    "model": "suspicious_device",
                    "label": "false",
                    "attributes": {
                        "emulator": false,
                        "jailbroken": false,
                        "missing_expected_properties": false,
                        "frida": false,
                        "high_risk_plugins": false
                    },
                    "score": null
                },
                "factory_reset": {
                    "version": "1.0",
                    "model": "factory_reset",
                    "label": "false",
                    "attributes": {
                        "time": 0,
                        "timestamp": 0
                    },
                    "score": null
                },
                "multiple_ids_per_device": {
                    "version": "1.0",
                    "model": "multiple_ids_per_device",
                    "label": "false",
                    "attributes": {
                        "multiple_ids_per_device_count_1_day": 1,
                        "multiple_ids_per_device_count_1_week": 1,
                        "multiple_ids_per_device_count_4_week": 2,
                        "multiple_ids_per_device_count_12_week": 4
                    },
                    "score": null
                },
                "ip_address_association": {
                    "version": "1.0",
                    "model": "ip_address_association",
                    "label": "false",
                    "attributes": {
                        "aws_ip_set": false,
                        "azure_china_ip_set": false,
                        "azure_germany_ip_set": false,
                        "azure_government_ip_set": false,
                        "azure_public_ip_set": false,
                        "digital_ocean_ip_set": false,
                        "google_ip_set": false,
                        "vultr_ip_set": false
                    },
                    "score": null
                },
                "fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "fraud_ring_indicator",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "gps_spoofing": {
                    "version": "1.0",
                    "model": "gps_spoofing",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "device_reputation": {
                    "version": "1.0",
                    "model": "device_reputation",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "vpn": {
                    "version": "1.0",
                    "model": "vpn",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "bot_framework": {
                    "version": "1.0",
                    "model": "bot_framework",
                    "label": "false",
                    "attributes": {},
                    "score": null
                }
            },
            "id": "example-response-4"
        },
        {
            "siteId": "form_neuro500",
            "funnel": null,
            "clientId": "example-response-4",
            "useCaseName": "Account Defense with Device Site",
            "registeredUserId": "example-response-4",
            "productType": "AD_LOGIN",
            "deviceId": "example-device-4",
            "interactionAttributes": {
                "interaction_time_ms": 32487,
                "unique_all_targets_count": 5,
                "client_id_count": 1,
                "unique_known_targets_count": 5,
                "unique_unknown_targets_count": 0,
                "session_id_count": 1,
                "elapsed_time_ms": 54428,
                "user_id_count": 1,
                "ip_geolocation": {
                    "accuracyRadius": 50,
                    "latitude": 48.4106,
                    "longitude": 114.3353,
                    "postalCode": "59937",
                    "timezone": "America/Denver",
                    "city": {
                        "name": "Whitefish"
                    },
                    "country": {
                        "code": "US",
                        "name": "United States"
                    },
                    "continent": {
                        "code": "NA",
                        "name": "North America"
                    },
                    "subdivisions": [
                        {
                            "isoCode": "MT",
                            "name": "Montana"
                        }
                    ]
                }
            },
            "signals": {
                "new_device": {
                    "version": "1.0",
                    "model": "new_device",
                    "label": "false",
                    "attributes": {
                        "device_count_1_day": 2,
                        "device_count_1_week": 2,
                        "device_count_4_week": 2,
                        "device_count_12_week": 3
                    },
                    "score": null
                },
                "os_version_change": {
                    "version": "1.0",
                    "model": "os_version_change",
                    "label": "true",
                    "attributes": {
                        "os_version_count_1_day": 2,
                        "os_version_count_1_week": 2,
                        "os_version_count_4_week": 2,
                        "os_version_count_12_week": 3
                    },
                    "score": null
                },
                "rapid_location_change": {
                    "version": "1.0",
                    "model": "rapid_location_change",
                    "label": "false",
                    "attributes": {
                        "distance_km_between_sessions": 0.2343,
                        "time_hr_between_sessions": 1
                    },
                    "score": null
                },
                "behavioral_analytics_recognition": {
                    "version": "1.0",
                    "model": "behavioral_analytics_recognition",
                    "label": "neutral",
                    "attributes": {},
                    "score": 50
                },
                "os_type_change": {
                    "version": "1.0",
                    "model": "os_type_change",
                    "label": "false",
                    "attributes": {
                        "os_type_count_1_day": 1,
                        "os_type_count_1_week": 1,
                        "os_type_count_4_week": 1,
                        "os_type_count_12_week": 2
                    },
                    "score": null
                },
                "public_proxy": {
                    "version": "1.0",
                    "model": "public_proxy",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "tor_exit_node": {
                    "version": "1.0",
                    "model": "tor_exit_node",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "ip_blocklist": {
                    "version": "1.0",
                    "model": "ip_blocklist",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "device_type_change": {
                    "version": "1.0",
                    "model": "device_type_change",
                    "label": "true",
                    "attributes": {
                        "device_type_count_1_day": 2,
                        "device_type_count_1_week": 2,
                        "device_type_count_4_week": 2,
                        "device_type_count_12_week": 3
                    },
                    "score": null
                },
                "incognito": {
                    "version": "1.0",
                    "model": "incognito",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "suspicious_device": {
                    "version": "1.0",
                    "model": "suspicious_device",
                    "label": "false",
                    "attributes": {
                        "emulator": false,
                        "jailbroken": false,
                        "missing_expected_properties": false,
                        "frida": false,
                        "high_risk_plugins": false
                    },
                    "score": null
                },
                "multiple_users_per_device": {
                    "version": "1.0",
                    "model": "multiple_users_per_device",
                    "label": "false",
                    "attributes": {
                        "registered_user_id_count_1_day": 1,
                        "registered_user_id_count_1_week": 2,
                        "registered_user_id_count_4_week": 2,
                        "registered_user_id_count_12_week": 2
                    },
                    "score": null
                },
                "ip_address_association": {
                    "version": "1.0",
                    "model": "ip_address_association",
                    "label": "false",
                    "attributes": {
                        "aws_ip_set": false,
                        "azure_china_ip_set": false,
                        "azure_germany_ip_set": false,
                        "azure_government_ip_set": false,
                        "azure_public_ip_set": false,
                        "digital_ocean_ip_set": false,
                        "google_ip_set": false,
                        "oracle_ip_set": false,
                        "vultr_ip_set": false
                    },
                    "score": null
                },
                "automated_activity": {
                    "version": "1.0",
                    "model": "automated_activity",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "ip_address_change": {
                    "version": "1.0",
                    "model": "ip_address_change",
                    "label": "true",
                    "attributes": {
                        "ip_address_count_1_day": 2,
                        "ip_address_count_1_week": 2,
                        "ip_address_count_4_week": 2,
                        "ip_address_count_12_week": 3
                    },
                    "score": null
                },
                "device_reputation": {
                    "version": "1.0",
                    "model": "device_reputation",
                    "label": "false",
                    "attributes": {
                        "customer_blocklist": false,
                        "global_blocklist": false
                    },
                    "score": null
                },
                "vpn": {
                    "version": "1.0",
                    "model": "vpn",
                    "label": "true",
                    "attributes": {},
                    "score": null
                },
                "device_velocity": {
                    "version": "1.0",
                    "model": "device_velocity",
                    "label": "false",
                    "attributes": {
                        "sessions_per_device_count_1_day": 1,
                        "sessions_per_device_count_1_week": 2,
                        "sessions_per_device_count_4_week": 2,
                        "sessions_per_device_count_12_week": 4
                    },
                    "score": null
                },
                "country_change": {
                    "version": "1.0",
                    "model": "country_change",
                    "label": "false",
                    "attributes": {
                        "country_count_1_day": 1,
                        "country_count_1_week": 1,
                        "country_count_4_week": 1,
                        "country_count_12_week": 1
                    },
                    "score": null
                },
                "bot_framework": {
                    "version": "1.0",
                    "model": "bot_framework",
                    "label": "false",
                    "attributes": {},
                    "score": null
                },
                "browser_version_change": {
                    "version": "1.0",
                    "model": "browser_version_change",
                    "label": "false",
                    "attributes": {
                        "browser_version_count_1_day": 1,
                        "browser_version_count_1_week": 1,
                        "browser_version_count_4_week": 2,
                        "browser_version_count_12_week": 2
                    },
                    "score": null
                },
                "session_login_fraud_ring_indicator": {
                    "version": "1.0",
                    "model": "session_login_fraud_ring_indicator",
                    "label": "false",
                    "attributes": {},
                    "score": 0.0
                },
                "browser_type_change": {
                    "version": "1.0",
                    "model": "browser_type_change",
                    "label": "false",
                    "attributes": {
                        "browser_type_count_1_day": 1,
                        "browser_type_count_1_week": 1,
                        "browser_type_count_4_week": 2,
                        "browser_type_count_12_week": 2
                    },
                    "score": null
                },
                "user_agent_change": {
                    "version": "1.0",
                    "model": "user_agent_change",
                    "label": "true",
                    "attributes": {
                        "user_agent_count_1_day": 2,
                        "user_agent_count_1_week": 2,
                        "user_agent_count_4_week": 2,
                        "user_agent_count_12_week": 3
                    },
                    "score": null
                },
                "remote_access": {
                    "version": "1.0.0",
                    "model": "remote_access",
                    "label": "false",
                    "attributes": {},
                    "score": 0
                },
                "ato_risk": {
                    "version": "1.0",
                    "model": "ato_risk",
                    "label": "medium",
                    "attributes": {},
                    "score": 0.5
                },
            },
            "id": "example-response-4"
        }
    ]
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v5/profiles/users/example-response-5?api_checkpoint_name=test \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
    "status": "SUCCESS",
    "message": "success",
    "moreInfo": null,
    "useCaseResults": [
        {
            "siteId": "form_neuro400",
            "funnel": "",
            "clientId": "",
            "useCaseName": "Account Onboarding with Device Site",
            "registeredUserId": "example-response-5",
            "productType": "",
            "interactionAttributes": null,
            "signals": null,
            "errorMessage": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
            "id": ""
        },
        {
            "siteId": "form_neuro500",
            "funnel": "",
            "clientId": "",
            "useCaseName": "Account Defense with Device Site",
            "registeredUserId": "example-response-5",
            "productType": "",
            "interactionAttributes": null,
            "signals": null,
            "errorMessage": "Data has been received for this profile, though the site still needs to be configured to calculate an accurate result.",
            "id": ""
        }
    ]
}
{
  "status": "SUCCESS",
  "message": "success",
  "moreInfo": null,
  "useCaseResults": [
    {
      "siteId": "form_neuro400",
      "funnel": null,
      "clientId": "example-response-6",
      "useCaseName": "Account Onboarding with Device Site",
      "registeredUserId": null,
      "productType": "AO",
      "deviceId": "example-device-6",
      "interactionAttributes": {
        "interaction_time_ms": 112147,
        "unique_all_targets_count": 4,
        "client_id_count": 1,
        "unique_known_targets_count": 4,
        "unique_unknown_targets_count": 0,
        "session_id_count": 1,
        "elapsed_time_ms": 249429,
        "user_id_count": 1,
        "ip_geolocation": {
          "accuracyRadius": 50,
          "latitude": 48.4106,
          "longitude": 114.3353,
          "postalCode": "59937",
          "timezone": "America/Denver",
          "city": {
            "name": "Whitefish"
          },
          "country": {
            "code": "US",
            "name": "United States"
          },
          "continent": {
            "code": "NA",
            "name": "North America"
          },
          "subdivisions": [
            {
              "isoCode": "MT",
              "name": "Montana"
            }
          ]
        }
      },
      "signals": {
        "risky_device": {
          "version": "1.0",
          "model": "risky_device",
          "label": "false",
          "attributes": {
            "risky_application_count": 0
          },
          "score": 0
        },
        "familiarity": {
          "version": "2.5.0",
          "model": "familiarity",
          "label": "low",
          "attributes": {
            "other__timing__feature_2": null,
            "other__timing__feature_1": null,
            "other__timing__feature_4": null,
            "other__timing__feature_3": null,
            "pii__method_of_entry__feature_3": 3.75,
            "pii__method_of_entry__feature_1": 2,
            "pii__method_of_entry__feature_2": 3,
            "other__typing_patterns__feature_9": null,
            "device_type__is_pc": 1,
            "other__typing_patterns__feature_8": null,
            "other__typing_patterns__feature_7": null,
            "other__typing_patterns__feature_6": null,
            "other__typing_patterns__feature_5": null,
            "other__typing_patterns__feature_4": null,
            "all_text__typing_patterns__feature_2": 2.2456538170823883,
            "all_text__typing_patterns__feature_1": null,
            "other__typing_patterns__feature_3": null,
            "other__interaction_patterns__feature_5": null,
            "other__typing_patterns__feature_2": null,
            "other__interaction_patterns__feature_6": null,
            "other__typing_patterns__feature_1": null,
            "other__interaction_patterns__feature_1": null,
            "other__interaction_patterns__feature_2": null,
            "other__interaction_patterns__feature_3": null,
            "other__interaction_patterns__feature_4": null,
            "pii__timing__feature_1": 0,
            "pii__timing__feature_2": 25337,
            "all_text__method_of_entry__feature_1": 0,
            "pii__interaction_patterns__feature_5": 0.7142857142857143,
            "other__method_of_entry__feature_1": null,
            "pii__interaction_patterns__feature_2": 5,
            "pii__interaction_patterns__feature_1": 1,
            "all_text__method_of_entry__feature_2": 3,
            "pii__interaction_patterns__feature_4": 1,
            "all_text__method_of_entry__feature_3": 1,
            "pii__interaction_patterns__feature_3": 61.70561832874972,
            "pii__typing_patterns__feature_5": 2.2456538170823883,
            "pii__typing_patterns__feature_4": null,
            "pii__typing_patterns__feature_7": 300,
            "pii__typing_patterns__feature_6": 2.2456538170823883,
            "pii__typing_patterns__feature_9": 1.4,
            "pii__typing_patterns__feature_8": 1.4,
            "all_text__timing__feature_1": null,
            "other__typing_patterns__feature_11": null,
            "other__typing_patterns__feature_10": null,
            "all_text__timing__feature_4": 0,
            "pii__typing_patterns__feature_1": 200.11111111111111,
            "all_text__timing__feature_5": 0.7505883167220376,
            "all_text__timing__feature_2": 0,
            "pii__typing_patterns__feature_3": 36.66060555964672,
            "all_text__timing__feature_3": 0.07866864375364084,
            "pii__typing_patterns__feature_2": 36.66060555964672,
            "pii__transitions__feature_2": 6,
            "pii__transitions__feature_1": 1
          },
          "score": 51.6
        },
        "public_proxy": {
          "version": "1.0",
          "model": "public_proxy",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "tor_exit_node": {
          "version": "1.0",
          "model": "tor_exit_node",
          "label": "true",
          "attributes": {},
          "score": null
        },
        "ip_blocklist": {
          "version": "1.0",
          "model": "ip_blocklist",
          "label": "true",
          "attributes": {
            "customer_blocklist": true,
            "global_blocklist": false,
            "partner_blocklist": false
          },
          "score": null
        },
        "combined_digital_intent": {
          "version": "1.0",
          "model": "combined_digital_intent",
          "label": "risky",
          "attributes": {},
          "score": 2
        },
        "incognito": {
          "version": "1.0",
          "model": "incognito",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "suspicious_device": {
          "version": "1.0",
          "model": "suspicious_device",
          "label": "true",
          "attributes": {
            "emulator": true,
            "jailbroken": false,
            "missing_expected_properties": false,
            "frida": false,
            "high_risk_plugins": false
          },
          "score": null
        },
        "factory_reset": {
          "version": "1.0",
          "model": "factory_reset",
          "label": "false",
          "attributes": {
            "time": 0,
            "timestamp": 0
          },
          "score": null
        },
        "multiple_ids_per_device": {
          "version": "1.0",
          "model": "multiple_ids_per_device",
          "label": "false",
          "attributes": {
            "multiple_ids_per_device_count_1_day": 1,
            "multiple_ids_per_device_count_1_week": 1,
            "multiple_ids_per_device_count_4_week": 1,
            "multiple_ids_per_device_count_12_week": 1
          },
          "score": null
        },
        "ip_address_association": {
          "version": "1.0",
          "model": "ip_address_association",
          "label": "false",
          "attributes": {
            "aws_ip_set": false,
            "azure_china_ip_set": false,
            "azure_germany_ip_set": false,
            "azure_government_ip_set": false,
            "azure_public_ip_set": false,
            "digital_ocean_ip_set": false,
            "google_ip_set": false,
            "vultr_ip_set": false
          },
          "score": null
        },
        "fraud_ring_indicator": {
          "version": "1.0",
          "model": "fraud_ring_indicator",
          "label": "false",
          "attributes": {},
          "score": 0
        },
        "automated_activity": {
          "version": "1.0",
          "model": "automated_activity",
          "label": "false",
          "attributes": {},
          "score": 0
        },
        "gps_spoofing": {
          "version": "1.0",
          "model": "gps_spoofing",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "device_reputation": {
          "version": "1.0",
          "model": "device_reputation",
          "label": "true",
          "attributes": {
            "customer_blocklist": true,
            "global_blocklist": false
          },
          "score": null
        },
        "vpn": {
          "version": "1.0",
          "model": "vpn",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "bot_framework": {
          "version": "1.0",
          "model": "bot_framework",
          "label": "false",
          "attributes": {},
          "score": null
        }
      },
      "id": "example-response-6"
    },
    {
      "siteId": "form_neuro500",
      "funnel": null,
      "clientId": "example-response-6",
      "useCaseName": "Account Defense with Device Site",
      "registeredUserId": null,
      "productType": "AD_LOGIN",
      "deviceId": "example-device-6",
      "interactionAttributes": {
        "client_id_count": 1,
        "session_id_count": 2,
        "user_id_count": 1,
        "ip_geolocation": {
          "accuracyRadius": 50,
          "latitude": 48.4106,
          "longitude": 114.3353,
          "postalCode": "59937",
          "timezone": "America/Denver",
          "city": {
            "name": "Whitefish"
          },
          "country": {
            "code": "US",
            "name": "United States"
          },
          "continent": {
            "code": "NA",
            "name": "North America"
          },
          "subdivisions": [
            {
              "isoCode": "MT",
              "name": "Montana"
            }
          ]
        }
      },
      "signals": {
        "new_device": {
          "version": "1.0",
          "model": "new_device",
          "label": "false",
          "attributes": {
            "device_count_1_day": 1,
            "device_count_1_week": 1,
            "device_count_4_week": 1,
            "device_count_12_week": 1
          },
          "score": null
        },
        "os_version_change": {
          "version": "1.0",
          "model": "os_version_change",
          "label": "false",
          "attributes": {
            "os_version_count_1_day": 1,
            "os_version_count_1_week": 1,
            "os_version_count_4_week": 1,
            "os_version_count_12_week": 1
          },
          "score": null
        },
        "rapid_location_change": {
          "version": "1.0",
          "model": "rapid_location_change",
          "label": "false",
          "attributes": {
            "distance_km_between_sessions": 0.2343,
            "time_hr_between_sessions": 1
          },
          "score": null
        },
        "behavioral_analytics_recognition": {
          "version": "1.0",
          "model": "behavioral_analytics_recognition",
          "label": "high risk",
          "attributes": {},
          "score": 5
        },
        "public_proxy": {
          "version": "1.0",
          "model": "public_proxy",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "tor_exit_node": {
          "version": "1.0",
          "model": "tor_exit_node",
          "label": "true",
          "attributes": {},
          "score": null
        },
        "incognito": {
          "version": "1.0",
          "model": "incognito",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "suspicious_device": {
          "version": "1.0",
          "model": "suspicious_device",
          "label": "true",
          "attributes": {
            "emulator": true,
            "jailbroken": false,
            "missing_expected_properties": false,
            "frida": false,
            "high_risk_plugins": false
          },
          "score": null
        },
        "multiple_users_per_device": {
          "version": "1.0",
          "model": "multiple_users_per_device",
          "label": "false",
          "attributes": {
            "registered_user_id_count_1_day": 1,
            "registered_user_id_count_1_week": 1,
            "registered_user_id_count_4_week": 1,
            "registered_user_id_count_12_week": 1
          },
          "score": null
        },
        "device_reputation": {
          "version": "1.0",
          "model": "device_reputation",
          "label": "true",
          "attributes": {
            "customer_blocklist": true,
            "global_blocklist": false
          },
          "score": null
        },
        "device_velocity": {
          "version": "1.0",
          "model": "device_velocity",
          "label": "false",
          "attributes": {
            "sessions_per_device_count_1_day": 1,
            "sessions_per_device_count_1_week": 1,
            "sessions_per_device_count_4_week": 1,
            "sessions_per_device_count_12_week": 1
          },
          "score": null
        },
        "bot_framework": {
          "version": "1.0",
          "model": "bot_framework",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "browser_version_change": {
          "version": "1.0",
          "model": "browser_version_change",
          "label": "false",
          "attributes": {
            "browser_version_count_1_day": 1,
            "browser_version_count_1_week": 1,
            "browser_version_count_4_week": 1,
            "browser_version_count_12_week": 1
          },
          "score": null
        },
        "browser_type_change": {
          "version": "1.0",
          "model": "browser_type_change",
          "label": "false",
          "attributes": {
            "browser_type_count_1_day": 1,
            "browser_type_count_1_week": 1,
            "browser_type_count_4_week": 1,
            "browser_type_count_12_week": 1
          },
          "score": null
        },
        "os_type_change": {
          "version": "1.0",
          "model": "os_type_change",
          "label": "false",
          "attributes": {
            "os_type_count_1_day": 1,
            "os_type_count_1_week": 1,
            "os_type_count_4_week": 1,
            "os_type_count_12_week": 1
          },
          "score": null
        },
        "ip_blocklist": {
          "version": "1.0",
          "model": "ip_blocklist",
          "label": "true",
          "attributes": {
            "customer_blocklist": true,
            "global_blocklist": false
          },
          "score": null
        },
        "device_type_change": {
          "version": "1.0",
          "model": "device_type_change",
          "label": "false",
          "attributes": {
            "device_type_count_1_day": 1,
            "device_type_count_1_week": 1,
            "device_type_count_4_week": 1,
            "device_type_count_12_week": 1
          },
          "score": null
        },
        "remote_access": {
          "version": "1.0",
          "model": "remote_access",
          "label": "false",
          "attributes": {},
          "score": 0
        },
        "ip_address_association": {
          "version": "1.0",
          "model": "ip_address_association",
          "label": "false",
          "attributes": {
            "aws_ip_set": false,
            "azure_china_ip_set": false,
            "azure_germany_ip_set": false,
            "azure_government_ip_set": false,
            "azure_public_ip_set": false,
            "digital_ocean_ip_set": false,
            "google_ip_set": false,
            "oracle_ip_set": false,
            "vultr_ip_set": false
          },
          "score": null
        },
        "ato_risk": {
          "version": "1.0",
          "model": "ato_risk",
          "label": "low",
          "attributes": {},
          "score": 0
        },
        "automated_activity": {
          "version": "1.0",
          "model": "automated_activity",
          "label": "false",
          "attributes": {},
          "score": 0
        },
        "ip_address_change": {
          "version": "1.0",
          "model": "ip_address_change",
          "label": "false",
          "attributes": {
            "ip_address_count_1_day": 1,
            "ip_address_count_1_week": 1,
            "ip_address_count_4_week": 1,
            "ip_address_count_12_week": 1
          },
          "score": null
        },
        "vpn": {
          "version": "1.0",
          "model": "vpn",
          "label": "false",
          "attributes": {},
          "score": null
        },
        "country_change": {
          "version": "1.0",
          "model": "country_change",
          "label": "false",
          "attributes": {
            "country_count_1_day": 1,
            "country_count_1_week": 1,
            "country_count_4_week": 1,
            "country_count_12_week": 1
          },
          "score": null
        },
        "session_login_fraud_ring_indicator": {
          "version": "1.0",
          "model": "session_login_fraud_ring_indicator",
          "label": "false",
          "attributes": {},
          "score": 0
        },
        "user_agent_change": {
          "version": "1.0",
          "model": "user_agent_change",
          "label": "false",
          "attributes": {
            "user_agent_count_1_day": 1,
            "user_agent_count_1_week": 1,
            "user_agent_count_4_week": 1,
            "user_agent_count_12_week": 1
          },
          "score": null
        }
      },
      "id": "example-response-6"
    }
  ]
}

Error Responses

Site Id Identity Id Code Status Message
form_neuro100 example-response-1 401 MISSING_API_KEY
Problem: Missing API key. Check that you provided an API key.
Method: Trigger by not including an API key.
form_neuro100 example-response-1 401 UNAUTHORIZED_ACCESS
Problem: Invalid API key. Check that you used the correct API key.
Method: Trigger by using an invalid API key.
form_neuro999 example-response-1 401 UNAUTHORIZED_API_KEY
Problem: API key does not have access to this site ID.
Method: Trigger by using a Site ID you do not have permission to access.
form_neuro100 example-response-1 404 NOT_FOUND
Problem: Resource not found. Check the URL.
Method: Trigger by changing the URL to an invalid Endpoint.
form_neuro100 example-response-999 404 PROFILE_NOT_FOUND
Problem: No resource found for the given Identity ID and Site ID.
Method: Trigger by using an Identity ID that does not exist.
Request and Error Response Examples
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-1 \
  // do not include an API key
  --header 'accept: application/json'

// Response
{
  "status": "MISSING_API_KEY",
  "message": "Missing API key",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#401-missing_api_key"
 }
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_invalidTestKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "UNAUTHORIZED_ACCESS",
  "message": "Invalid API key",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#401-unauthorized_access"
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro999/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "UNAUTHORIZED_API_KEY",
  "message": "API key does not have access to this site ID or resource",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#401-unauthorized_api_key"
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/wrongURL/form_neuro100/profiles/example-response-1 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "NOT_FOUND",
  "message": "Resource not found",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#404-not_found"
}
// Request
curl --request GET \
  --url https://api.neuro-id.com/v4.1/sites/form_neuro100/profiles/example-response-999 \
  --header 'API-KEY: api_YOUR_testKeyHere ' \
  --header 'accept: application/json'

// Response
{
  "status": "PROFILE_NOT_FOUND",
  "message": "No profiles found for the given ID and Site ID",
  "moreInfo": "https://neuro-id.readme.io/reference/analytics-api-v41#404-profile_not_found"
}