---
title: "Fetch raw IDV results"
url: "https://developer.incode.com/api-reference/get-raw-idv-results/"
section: "api-reference"
group: "Interview"
version: "v1.1"
status: "live"
endpoint: "GET /omni/get/raw-idv-results"
---
# Fetch raw IDV results

`GET /omni/get/raw-idv-results`

Base URL: `https://demo-api.incodesmile.com` — Incode demo environment

Returns raw id-validation-service check results with original naming preserved (no mapping to user-service key constants, no threshold-binarization), plus the raw checkFraudRisk result.

## Path & query parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | query | string |  | Id of interview for which raw IDV results are requested. If not present, it will be extracted from token. |
| `api-version` | header | string | yes |  |

## Responses

### 200

OK

Response body (`application/json`):

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `checkResults` | array[RawIdvCheckResultDto] |  | Raw id-validation-service check results. Empty when id-validation-service was not invoked for the interview. |
| `checkResults.name` | string |  | Original id-validation-service check name, e.g. checkIdFaceTamper, checkIdScreenLiveness, deep_fraud. |
| `checkResults.severity` | string |  | Check severity: low / medium / high. Enum: `low`, `medium`, `high` |
| `checkResults.version` | string |  | Model version that produced the result. |
| `checkResults.result` | number (float) |  | Raw confidence/result value, Float in [0, 1]. Nullable when the check did not run. |
| `fraudRisk` | FraudRiskDto |  | Raw checkFraudRisk result. Null when no FraudRisk was produced for the interview. |
| `fraudRisk.name` | string |  | Check name, always checkFraudRisk. |
| `fraudRisk.severity` | string |  | Check severity: low / medium / high. Enum: `LOW`, `MEDIUM`, `HIGH` |
| `fraudRisk.version` | string |  | Model version that produced the result. |
| `fraudRisk.result` | number |  | Raw fraud-risk result value (full precision). |
| `fraudRisk.responseText` | string |  | Free-text explanation returned by the fraud-risk model. |
| `fraudRisk.responseCategory` | string |  | Response category returned by the fraud-risk model. |
| `fraudRisk.topNFraudFeatures` | array[string] |  | Top N features that contributed towards a fraud classification. |
| `fraudRisk.topNLegitFeatures` | array[string] |  | Top N features that contributed towards a legitimate classification. |
| `fraudRisk.topNFraudCodes` | array[string] |  | Raw stable feature codes for topNFraudFeatures (same order), as sent by the model. |
| `fraudRisk.topNLegitCodes` | array[string] |  | Raw stable feature codes for topNLegitFeatures (same order), as sent by the model. |

### 400

Bad Request

Response body (`application/json`):

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `timestamp` | integer (int64) |  | UTC timestamp in milliseconds |
| `status` | integer (int32) |  | Custom error code or HTTP status code |
| `error` | string |  | HTTP status error |
| `message` | string |  | Custom error message |
| `path` | string |  | Endpoint path |
| `details` | object |  | Custom error details |

## Code samples

Generated from this endpoint's method, path, and the conventional Incode headers. The base URL is the Incode demo environment; replace `<YOUR_API_KEY>` with a key for your region.

### cURL

```bash
curl -X GET https://demo-api.incodesmile.com/omni/get/raw-idv-results \
  -H "x-api-key: <YOUR_API_KEY>" \
  -H "api-version: 1.0"
```

### Node

```js
const res = await fetch("https://demo-api.incodesmile.com/omni/get/raw-idv-results", {
  method: "GET",
  headers: {
      "x-api-key": "<YOUR_API_KEY>",
      "api-version": "1.0",
  },
});
const data = await res.json();
```

### Python

```python
import requests

headers = {
    "x-api-key": "<YOUR_API_KEY>",
    "api-version": "1.0",
}
res = requests.get("https://demo-api.incodesmile.com/omni/get/raw-idv-results", headers=headers)
data = res.json()
```

### Java

```java
HttpRequest req = HttpRequest.newBuilder()
    .uri(URI.create("https://demo-api.incodesmile.com/omni/get/raw-idv-results"))
    .header("x-api-key", "<YOUR_API_KEY>")
    .header("api-version", "1.0")
    .method("GET", HttpRequest.BodyPublishers.noBody())
    .build();
HttpResponse<String> res = HttpClient.newHttpClient()
    .send(req, HttpResponse.BodyHandlers.ofString());
```

### Example response

```json
{
  "success": true,
  "status": "OK"
}
```
