Download BGV Report
curl --request GET \
--url https://bgv.konnectnxt.com/api/verification/bgv/download \
--header 'Authorization: Bearer <token>'import requests
url = "https://bgv.konnectnxt.com/api/verification/bgv/download"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://bgv.konnectnxt.com/api/verification/bgv/download', 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://bgv.konnectnxt.com/api/verification/bgv/download",
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://bgv.konnectnxt.com/api/verification/bgv/download"
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://bgv.konnectnxt.com/api/verification/bgv/download")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://bgv.konnectnxt.com/api/verification/bgv/download")
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{
"success": true,
"message": "Report Fetched Successfully.",
"data": {
"case_id": "a1b2c3",
"candidate_name": "Ravi Kumar",
"status": "completed",
"created_at": "2024-06-01T08:00:00Z",
"completed_at": "2024-06-04T10:30:00Z",
"report": "https://storage.googleapis.com/konnectnxt-bucket/Reports/pdf/report_a1b2c3.pdf?v=84291"
}
}BGV Submit V2
Download BGV Report
GET
/
verification
/
bgv
/
download
Download BGV Report
curl --request GET \
--url https://bgv.konnectnxt.com/api/verification/bgv/download \
--header 'Authorization: Bearer <token>'import requests
url = "https://bgv.konnectnxt.com/api/verification/bgv/download"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://bgv.konnectnxt.com/api/verification/bgv/download', 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://bgv.konnectnxt.com/api/verification/bgv/download",
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://bgv.konnectnxt.com/api/verification/bgv/download"
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://bgv.konnectnxt.com/api/verification/bgv/download")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://bgv.konnectnxt.com/api/verification/bgv/download")
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{
"success": true,
"message": "Report Fetched Successfully.",
"data": {
"case_id": "a1b2c3",
"candidate_name": "Ravi Kumar",
"status": "completed",
"created_at": "2024-06-01T08:00:00Z",
"completed_at": "2024-06-04T10:30:00Z",
"report": "https://storage.googleapis.com/konnectnxt-bucket/Reports/pdf/report_a1b2c3.pdf?v=84291"
}
}Overview
Download the final background verification report for a completed BGV case. Call this endpoint after receiving thecase.completed webhook for the relevant case_id.
When to Call This Endpoint
POST /api/async/v2/bgv-submit/
│
│ (async checks running...)
▼
webhook: case.completed
│
▼
GET /api/verification/bgv/download?case_id=<case_id>
completed. Calling before completion returns a 404 with "Candidate has not submitted the BGV yet.".
Response Format
type query param | Response data.report value |
|---|---|
pdf | GCP-hosted direct-download URL (public, time-limited) |
| (omitted) | Base64-encoded PDF string |
Using the Base64 report
const pdfBuffer = Buffer.from(data.report, "base64");
fs.writeFileSync("bgv_report.pdf", pdfBuffer);
Notes
- The hosted PDF URL (when
type=pdf) is publicly accessible but contains a version token (?v=...) — store it securely and do not expose it unnecessarily. - The Base64 string represents the full PDF file and can be decoded client-side.
Authorizations
API key issued by KonnectNXT. Pass as Authorization: Bearer <your_api_key>.
Query Parameters
The UUID of the BGV case. Obtained from the cases_created array in the submit response, or from the webhook payload.
Controls the report format. Use pdf for a hosted URL; omit for Base64-encoded PDF.
Available options:
pdf Was this page helpful?

