Fetch single verification
curl --request GET \
--url https://server.heliumid.io/api/v1/verifications/{id}import requests
url = "https://server.heliumid.io/api/v1/verifications/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://server.heliumid.io/api/v1/verifications/{id}', 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://server.heliumid.io/api/v1/verifications/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://server.heliumid.io/api/v1/verifications/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://server.heliumid.io/api/v1/verifications/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://server.heliumid.io/api/v1/verifications/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": true,
"message": "Fetched Single verifications",
"data": {
"status": "successful",
"statusCode": 2010,
"verificationMethod": "auto",
"createdAt": "2026-04-09T23:06:32.943Z",
"updatedAt": "2026-04-09T23:57:49.818Z",
"selfie": {
"key": "1775776050274-6dfrlfk98zn.jpeg",
"url": "https://s3.eu-north-1.amazonaws.com/io.c80.heliumid/1775776050274-6dfrlfk98zn.jpeg"
},
"doc": {
"type": "NATIONAL_ID",
"name": "National Identity Card",
"issuingState": "NGA",
"key": {
"front": "1775776085295-1em87ax7pcg.jpeg",
"back": "1775776111293-wyx4x0cu12c.jpeg"
},
"url": {
"front": "https://s3.eu-north-1.amazonaws.com/io.c80.heliumid/1775776085295-1em87ax7pcg.jpeg",
"back": "https://s3.eu-north-1.amazonaws.com/io.c80.heliumid/1775776111293-wyx4x0cu12c.jpeg"
}
},
"reason": "",
"docInfo": {
"docType": "NATIONAL_ID",
"docNumber": "123456789",
"issueDate": "2015-01-01",
"expiryDate": "2025-01-01",
"issuingState": "NGA",
"firstName": "JOHN",
"lastName": "DOE",
"middleName": "SMITH",
"dob": "1990-01-01",
"sex": "Male"
},
"id": "69d830f88c8373aa37c95974"
},
"code": 200
}API Reference
Fetch single verification
GET
/
v1
/
verifications
/
{id}
Fetch single verification
curl --request GET \
--url https://server.heliumid.io/api/v1/verifications/{id}import requests
url = "https://server.heliumid.io/api/v1/verifications/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://server.heliumid.io/api/v1/verifications/{id}', 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://server.heliumid.io/api/v1/verifications/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://server.heliumid.io/api/v1/verifications/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://server.heliumid.io/api/v1/verifications/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://server.heliumid.io/api/v1/verifications/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": true,
"message": "Fetched Single verifications",
"data": {
"status": "successful",
"statusCode": 2010,
"verificationMethod": "auto",
"createdAt": "2026-04-09T23:06:32.943Z",
"updatedAt": "2026-04-09T23:57:49.818Z",
"selfie": {
"key": "1775776050274-6dfrlfk98zn.jpeg",
"url": "https://s3.eu-north-1.amazonaws.com/io.c80.heliumid/1775776050274-6dfrlfk98zn.jpeg"
},
"doc": {
"type": "NATIONAL_ID",
"name": "National Identity Card",
"issuingState": "NGA",
"key": {
"front": "1775776085295-1em87ax7pcg.jpeg",
"back": "1775776111293-wyx4x0cu12c.jpeg"
},
"url": {
"front": "https://s3.eu-north-1.amazonaws.com/io.c80.heliumid/1775776085295-1em87ax7pcg.jpeg",
"back": "https://s3.eu-north-1.amazonaws.com/io.c80.heliumid/1775776111293-wyx4x0cu12c.jpeg"
}
},
"reason": "",
"docInfo": {
"docType": "NATIONAL_ID",
"docNumber": "123456789",
"issueDate": "2015-01-01",
"expiryDate": "2025-01-01",
"issuingState": "NGA",
"firstName": "JOHN",
"lastName": "DOE",
"middleName": "SMITH",
"dob": "1990-01-01",
"sex": "Male"
},
"id": "69d830f88c8373aa37c95974"
},
"code": 200
}⌘I