Read verification data
curl --request GET \
--url https://api.verify.privue.ai/verifications/{verification_id}/data \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.verify.privue.ai/verifications/{verification_id}/data"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.verify.privue.ai/verifications/{verification_id}/data', 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.verify.privue.ai/verifications/{verification_id}/data",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.verify.privue.ai/verifications/{verification_id}/data"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.verify.privue.ai/verifications/{verification_id}/data")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.verify.privue.ai/verifications/{verification_id}/data")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"verification_id": "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"reference_id": "ord_991",
"status": "completed",
"steps": [
{
"key": "consent",
"title": "Consent",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:31:05",
"data": {
"terms_accepted": true,
"privacy_accepted": true,
"accepted_at": "2026-08-06T14:31:05"
},
"documents": []
},
{
"key": "identity",
"title": "Identity",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:33:40",
"data": {
"full_name": "Asha Menon",
"date_of_birth": "1988-04-12",
"pan": "ABCDE1234F",
"aadhaar_last4": "6789",
"email": "asha.menon@example.com",
"mobile": "+919876543210"
},
"documents": []
},
{
"key": "business",
"title": "Business details",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:36:20",
"data": {
"legal_name": "Menon Traders",
"trade_name": "Menon Traders",
"entity_type": "proprietorship",
"pan": "ABCDE1234F",
"gstin": "29ABCDE1234F1Z5",
"registered_address": {
"line1": "14, MG Road",
"city": "Bengaluru",
"state": "Karnataka",
"pincode": "560001"
}
},
"documents": []
},
{
"key": "bank",
"title": "Bank account",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:38:55",
"data": {
"account_holder_name": "Asha Menon",
"account_number": "50100247891234",
"ifsc": "HDFC0001234",
"bank_name": "HDFC Bank",
"branch": "MG Road, Bengaluru",
"account_type": "current"
},
"documents": []
},
{
"key": "documents",
"title": "Documents",
"required": false,
"status": "completed",
"completed_at": "2026-08-06T14:40:12",
"documents": [
{
"document_id": "b0f3e1c2-5a8d-4e77-9f21-3d4c6a2b1e90",
"tag": "gst_certificate",
"kind": "document",
"filename": "gst-certificate.pdf",
"content_type": "application/pdf",
"size_bytes": 184320,
"uploaded_at": "2026-08-06T14:39:20"
},
{
"document_id": "7c1d90a4-2e6b-4f38-8a11-9b5f0c7d2e41",
"tag": "pan_card",
"kind": "image",
"filename": "pan-card.jpg",
"content_type": "image/jpeg",
"size_bytes": 96117,
"uploaded_at": "2026-08-06T14:39:48"
},
{
"document_id": "e5a2f7b9-3c40-4d1a-b6e8-1f2c3d4a5b60",
"tag": "bank_statement",
"kind": "document",
"filename": "bank-statement.pdf",
"content_type": "application/pdf",
"size_bytes": 251904,
"uploaded_at": "2026-08-06T14:40:12"
}
]
},
{
"key": "review",
"title": "Review and submit",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:41:00",
"documents": []
}
]
}{
"detail": "API key is missing, malformed, or rejected."
}{
"detail": "No active verification client for this API key."
}{
"detail": "No verification with id 3f2504e0-4f89-41d3-9a0c-0305e82c3301."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Verifications
Read verification data
Return normalized result plus per-step detail. Valid at any status, partial before completion.
GET
/
verifications
/
{verification_id}
/
data
Read verification data
curl --request GET \
--url https://api.verify.privue.ai/verifications/{verification_id}/data \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.verify.privue.ai/verifications/{verification_id}/data"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.verify.privue.ai/verifications/{verification_id}/data', 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.verify.privue.ai/verifications/{verification_id}/data",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.verify.privue.ai/verifications/{verification_id}/data"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.verify.privue.ai/verifications/{verification_id}/data")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.verify.privue.ai/verifications/{verification_id}/data")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"verification_id": "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"reference_id": "ord_991",
"status": "completed",
"steps": [
{
"key": "consent",
"title": "Consent",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:31:05",
"data": {
"terms_accepted": true,
"privacy_accepted": true,
"accepted_at": "2026-08-06T14:31:05"
},
"documents": []
},
{
"key": "identity",
"title": "Identity",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:33:40",
"data": {
"full_name": "Asha Menon",
"date_of_birth": "1988-04-12",
"pan": "ABCDE1234F",
"aadhaar_last4": "6789",
"email": "asha.menon@example.com",
"mobile": "+919876543210"
},
"documents": []
},
{
"key": "business",
"title": "Business details",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:36:20",
"data": {
"legal_name": "Menon Traders",
"trade_name": "Menon Traders",
"entity_type": "proprietorship",
"pan": "ABCDE1234F",
"gstin": "29ABCDE1234F1Z5",
"registered_address": {
"line1": "14, MG Road",
"city": "Bengaluru",
"state": "Karnataka",
"pincode": "560001"
}
},
"documents": []
},
{
"key": "bank",
"title": "Bank account",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:38:55",
"data": {
"account_holder_name": "Asha Menon",
"account_number": "50100247891234",
"ifsc": "HDFC0001234",
"bank_name": "HDFC Bank",
"branch": "MG Road, Bengaluru",
"account_type": "current"
},
"documents": []
},
{
"key": "documents",
"title": "Documents",
"required": false,
"status": "completed",
"completed_at": "2026-08-06T14:40:12",
"documents": [
{
"document_id": "b0f3e1c2-5a8d-4e77-9f21-3d4c6a2b1e90",
"tag": "gst_certificate",
"kind": "document",
"filename": "gst-certificate.pdf",
"content_type": "application/pdf",
"size_bytes": 184320,
"uploaded_at": "2026-08-06T14:39:20"
},
{
"document_id": "7c1d90a4-2e6b-4f38-8a11-9b5f0c7d2e41",
"tag": "pan_card",
"kind": "image",
"filename": "pan-card.jpg",
"content_type": "image/jpeg",
"size_bytes": 96117,
"uploaded_at": "2026-08-06T14:39:48"
},
{
"document_id": "e5a2f7b9-3c40-4d1a-b6e8-1f2c3d4a5b60",
"tag": "bank_statement",
"kind": "document",
"filename": "bank-statement.pdf",
"content_type": "application/pdf",
"size_bytes": 251904,
"uploaded_at": "2026-08-06T14:40:12"
}
]
},
{
"key": "review",
"title": "Review and submit",
"required": true,
"status": "completed",
"completed_at": "2026-08-06T14:41:00",
"documents": []
}
]
}{
"detail": "API key is missing, malformed, or rejected."
}{
"detail": "No active verification client for this API key."
}{
"detail": "No verification with id 3f2504e0-4f89-41d3-9a0c-0305e82c3301."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Normalized result plus per-step detail; partial before completion.
The collected result for one verification: each journey step with the data and documents it gathered.
Readable at any status; partial before completion.
Our id for this verification
Your correlation id, echoed back; null if you sent none
Current lifecycle status
Available options:
created, in-progress, completed, cancelled, expired Every journey step with the data and documents it collected
Show child attributes
Show child attributes
⌘I
