Dukcapil Data Full
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"nik": "0000000000000000",
"name": "Example User",
"dateOfBirth": "1981-06-16",
"selfieImage": "aSDinaTvuI8gbWludGxpZnk="
}
'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough"
payload = {
"nik": "0000000000000000",
"name": "Example User",
"dateOfBirth": "1981-06-16",
"selfieImage": "aSDinaTvuI8gbWludGxpZnk="
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
nik: '0000000000000000',
name: 'Example User',
dateOfBirth: '1981-06-16',
selfieImage: 'aSDinaTvuI8gbWludGxpZnk='
})
};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough', 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://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'nik' => '0000000000000000',
'name' => 'Example User',
'dateOfBirth' => '1981-06-16',
'selfieImage' => 'aSDinaTvuI8gbWludGxpZnk='
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough"
payload := strings.NewReader("{\n \"nik\": \"0000000000000000\",\n \"name\": \"Example User\",\n \"dateOfBirth\": \"1981-06-16\",\n \"selfieImage\": \"aSDinaTvuI8gbWludGxpZnk=\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"nik\": \"0000000000000000\",\n \"name\": \"Example User\",\n \"dateOfBirth\": \"1981-06-16\",\n \"selfieImage\": \"aSDinaTvuI8gbWludGxpZnk=\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"nik\": \"0000000000000000\",\n \"name\": \"Example User\",\n \"dateOfBirth\": \"1981-06-16\",\n \"selfieImage\": \"aSDinaTvuI8gbWludGxpZnk=\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Indonesia Dukcapil processed successfully",
"data": {
"isValid": true,
"nik": "0000000000000000",
"name": "Example User",
"dateOfBirth": "1981-06-16"
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"transactionId": "79b6f81c-fc48-42ce-b907-763129b0957e",
"verificationType": "dukcapil",
"metadata": {
"yourRef": "case-example"
},
"createdAt": "2026-09-02 08:00:00+0000"
}Indonesia Government
Dukcapil Data Full Passthrough
Return the full Indonesian Dukcapil result with selfie comparison.
POST
/
api
/
v3
/
verifications
/
indonesia
/
dukcapil-full-passthrough
Dukcapil Data Full
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"nik": "0000000000000000",
"name": "Example User",
"dateOfBirth": "1981-06-16",
"selfieImage": "aSDinaTvuI8gbWludGxpZnk="
}
'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough"
payload = {
"nik": "0000000000000000",
"name": "Example User",
"dateOfBirth": "1981-06-16",
"selfieImage": "aSDinaTvuI8gbWludGxpZnk="
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
nik: '0000000000000000',
name: 'Example User',
dateOfBirth: '1981-06-16',
selfieImage: 'aSDinaTvuI8gbWludGxpZnk='
})
};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough', 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://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'nik' => '0000000000000000',
'name' => 'Example User',
'dateOfBirth' => '1981-06-16',
'selfieImage' => 'aSDinaTvuI8gbWludGxpZnk='
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough"
payload := strings.NewReader("{\n \"nik\": \"0000000000000000\",\n \"name\": \"Example User\",\n \"dateOfBirth\": \"1981-06-16\",\n \"selfieImage\": \"aSDinaTvuI8gbWludGxpZnk=\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"nik\": \"0000000000000000\",\n \"name\": \"Example User\",\n \"dateOfBirth\": \"1981-06-16\",\n \"selfieImage\": \"aSDinaTvuI8gbWludGxpZnk=\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/dukcapil-full-passthrough")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"nik\": \"0000000000000000\",\n \"name\": \"Example User\",\n \"dateOfBirth\": \"1981-06-16\",\n \"selfieImage\": \"aSDinaTvuI8gbWludGxpZnk=\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Indonesia Dukcapil processed successfully",
"data": {
"isValid": true,
"nik": "0000000000000000",
"name": "Example User",
"dateOfBirth": "1981-06-16"
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"transactionId": "79b6f81c-fc48-42ce-b907-763129b0957e",
"verificationType": "dukcapil",
"metadata": {
"yourRef": "case-example"
},
"createdAt": "2026-09-02 08:00:00+0000"
}Authorizations
Use your API token as a Bearer token in the Authorization header.
Body
application/json
16-digit Indonesian national identity number.
Pattern:
^[0-9]{16}$Example:
"0000000000000000"
Example:
"Example User"
Example:
"1981-06-16"
Base64-encoded image, with or without a data-image prefix.
Optional family card number.
Example:
"Laki-laki"
Example:
"Kawin"
Optional client-defined values echoed in completed and source-error responses.
Response
The source returned a completed verified or rejected result. Both outcomes use HTTP 200.
Example:
true
CamelCase result fields from the corresponding Indonesia v3 verification.
Available options:
VERIFIED, REJECTED 3 = Verified, 1 = Rejected.
Available options:
3, 1 Example:
"2026-09-02 08:00:00+0000"
Optional client-defined values echoed in completed and source-error responses.

