List verification history
curl --request GET \
--url https://api.deepxl.ai/v1/verification \
--header 'x-api-key: <api-key>'import requests
url = "https://api.deepxl.ai/v1/verification"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.deepxl.ai/v1/verification', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.deepxl.ai/v1/verification",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.deepxl.ai/v1/verification"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.deepxl.ai/v1/verification")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deepxl.ai/v1/verification")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalCount": 89,
"count": 1,
"data": [
{
"verificationId": 456,
"idFileType": "jpeg",
"idFileName": "drivers_license.jpg",
"idFileSize": 156789,
"selfieFileType": "jpeg",
"selfieFileName": "selfie.jpg",
"selfieFileSize": 89012,
"model": "verification",
"country": "us",
"verified": true,
"modelResults": {
"technicalChecks": [
{
"type": "FACE_MATCH",
"status": "PASS",
"confidence": 0.95,
"details": "Face match confidence: 95%"
},
{
"type": "LIVENESS",
"status": "PASS",
"confidence": 0.98,
"details": "Liveness check passed"
}
]
},
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"tags": [
{
"name": "customerId",
"value": "9999"
},
{
"name": "customerName",
"value": "Acme Corp"
},
{
"name": "documentId",
"value": "DOC-2024-001"
},
{
"name": "companyName",
"value": "DeepXL"
},
{
"name": "companyId",
"value": "COMP-001"
}
],
"files": [
{
"category": "id",
"fileName": "drivers_license.jpg",
"fileSize": 156789,
"contentType": "image/jpeg",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"url": "https://api.deepxl.ai/v1/files/v_id_456_drivers_license.jpg"
},
{
"category": "face",
"fileName": "selfie.jpg",
"fileSize": 89012,
"contentType": "image/jpeg",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"url": "https://api.deepxl.ai/v1/files/v_face_456_selfie.jpg"
}
]
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}ID Verification
List verification history
List verification history for the organization. Supports sorting, pagination, and tag filtering.
GET
/
v1
/
verification
List verification history
curl --request GET \
--url https://api.deepxl.ai/v1/verification \
--header 'x-api-key: <api-key>'import requests
url = "https://api.deepxl.ai/v1/verification"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.deepxl.ai/v1/verification', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.deepxl.ai/v1/verification",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.deepxl.ai/v1/verification"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.deepxl.ai/v1/verification")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deepxl.ai/v1/verification")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalCount": 89,
"count": 1,
"data": [
{
"verificationId": 456,
"idFileType": "jpeg",
"idFileName": "drivers_license.jpg",
"idFileSize": 156789,
"selfieFileType": "jpeg",
"selfieFileName": "selfie.jpg",
"selfieFileSize": 89012,
"model": "verification",
"country": "us",
"verified": true,
"modelResults": {
"technicalChecks": [
{
"type": "FACE_MATCH",
"status": "PASS",
"confidence": 0.95,
"details": "Face match confidence: 95%"
},
{
"type": "LIVENESS",
"status": "PASS",
"confidence": 0.98,
"details": "Liveness check passed"
}
]
},
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"tags": [
{
"name": "customerId",
"value": "9999"
},
{
"name": "customerName",
"value": "Acme Corp"
},
{
"name": "documentId",
"value": "DOC-2024-001"
},
{
"name": "companyName",
"value": "DeepXL"
},
{
"name": "companyId",
"value": "COMP-001"
}
],
"files": [
{
"category": "id",
"fileName": "drivers_license.jpg",
"fileSize": 156789,
"contentType": "image/jpeg",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"url": "https://api.deepxl.ai/v1/files/v_id_456_drivers_license.jpg"
},
{
"category": "face",
"fileName": "selfie.jpg",
"fileSize": 89012,
"contentType": "image/jpeg",
"timestamp": 1725795600,
"timestampISO": "2024-09-08T10:00:00.000000",
"url": "https://api.deepxl.ai/v1/files/v_face_456_selfie.jpg"
}
]
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API key created in the dashboard
Query Parameters
Required range:
1 <= x <= 100Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
0 <= x <= 2147483647Required range:
0 <= x <= 2147483647Was this page helpful?
⌘I