List a verification's documents
curl --request GET \
--url https://api.verify.privue.ai/verifications/{verification_id}/documents \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.verify.privue.ai/verifications/{verification_id}/documents"
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}/documents', 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}/documents",
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}/documents"
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}/documents")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.verify.privue.ai/verifications/{verification_id}/documents")
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[
{
"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"
}
]{
"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
List a verification's documents
Return the documents collected for this verification; use the download endpoint to fetch one.
GET
/
verifications
/
{verification_id}
/
documents
List a verification's documents
curl --request GET \
--url https://api.verify.privue.ai/verifications/{verification_id}/documents \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.verify.privue.ai/verifications/{verification_id}/documents"
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}/documents', 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}/documents",
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}/documents"
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}/documents")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.verify.privue.ai/verifications/{verification_id}/documents")
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[
{
"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"
}
]{
"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
Metadata for every document the user uploaded.
Which step or slot the user uploaded this document against
Whether an uploaded file is a document or an image.
Available options:
document, image ⌘I
