Indonesia Driving Licence Details Extraction
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form documentImage='@example-file'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough"
files = { "documentImage": ("example-file", open("example-file", "rb")) }
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, files=files, headers=headers)
print(response.text)const form = new FormData();
form.append('documentImage', '<string>');
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
options.body = form;
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-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/driving-license-details-extraction-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 => "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: multipart/form-data"
],
]);
$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/driving-license-details-extraction-passthrough"
payload := strings.NewReader("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--")
req, _ := http.NewRequest("POST", url, payload)
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.post("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough")
.header("Authorization", "Bearer <token>")
.body("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request.body = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Indonesia driving license details extraction processed successfully",
"data": {
"outcome": "extracted",
"fields": {
"licenseNumber": {
"value": "870925120004",
"confidence": "98.80%"
},
"name": {
"value": "BUDI SANTOSO",
"confidence": "98.55%"
},
"placeOfBirth": {
"value": "JAKARTA",
"confidence": "98.32%"
},
"dateOfBirth": {
"value": "1987-09-25",
"confidence": "98.40%"
},
"gender": {
"value": "PRIA",
"confidence": "99.05%"
},
"bloodType": {
"value": "O",
"confidence": "95.10%"
},
"address": {
"street": {
"value": "JL. MERPATI RAYA NO. 12",
"confidence": "96.44%"
},
"rt": {
"value": "003",
"confidence": "98.20%"
},
"rw": {
"value": "007",
"confidence": "98.20%"
},
"village": {
"value": "KEBAYORAN LAMA UTARA",
"confidence": "96.90%"
},
"district": {
"value": "KEBAYORAN LAMA",
"confidence": "97.35%"
}
},
"occupation": {
"value": "KARYAWAN SWASTA",
"confidence": "95.60%"
},
"licenseType": {
"value": "SIM A",
"confidence": "99.12%"
},
"validUntil": {
"value": "2027-09-25",
"confidence": "98.05%"
},
"issuedDate": {
"value": "2022-09-25",
"confidence": "97.70%"
},
"issuingPlace": {
"value": "JAKARTA SELATAN",
"confidence": "98.15%"
},
"province": {
"value": "METRO JAYA",
"confidence": "97.44%"
},
"signature": null,
"photo": null
},
"missingFields": []
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"transactionId": "1e6b47ac-05d9-42f8-9c73-6a08b21fd5e7",
"verificationType": "idn_driving_license_details_extraction",
"metadata": null,
"createdAt": "2026-09-01T05:18:29.000000Z"
}
Document OCR
Indonesia Driving Licence Details Extraction
Extract structured fields from an Indonesian driving licence (SIM) without creating a Trust Validation.
POST
/
api
/
v3
/
verifications
/
indonesia
/
driving-license-details-extraction-passthrough
Indonesia Driving Licence Details Extraction
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form documentImage='@example-file'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough"
files = { "documentImage": ("example-file", open("example-file", "rb")) }
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, files=files, headers=headers)
print(response.text)const form = new FormData();
form.append('documentImage', '<string>');
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
options.body = form;
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-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/driving-license-details-extraction-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 => "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: multipart/form-data"
],
]);
$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/driving-license-details-extraction-passthrough"
payload := strings.NewReader("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--")
req, _ := http.NewRequest("POST", url, payload)
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.post("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough")
.header("Authorization", "Bearer <token>")
.body("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/indonesia/driving-license-details-extraction-passthrough")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request.body = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"documentImage\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Indonesia driving license details extraction processed successfully",
"data": {
"outcome": "extracted",
"fields": {
"licenseNumber": {
"value": "870925120004",
"confidence": "98.80%"
},
"name": {
"value": "BUDI SANTOSO",
"confidence": "98.55%"
},
"placeOfBirth": {
"value": "JAKARTA",
"confidence": "98.32%"
},
"dateOfBirth": {
"value": "1987-09-25",
"confidence": "98.40%"
},
"gender": {
"value": "PRIA",
"confidence": "99.05%"
},
"bloodType": {
"value": "O",
"confidence": "95.10%"
},
"address": {
"street": {
"value": "JL. MERPATI RAYA NO. 12",
"confidence": "96.44%"
},
"rt": {
"value": "003",
"confidence": "98.20%"
},
"rw": {
"value": "007",
"confidence": "98.20%"
},
"village": {
"value": "KEBAYORAN LAMA UTARA",
"confidence": "96.90%"
},
"district": {
"value": "KEBAYORAN LAMA",
"confidence": "97.35%"
}
},
"occupation": {
"value": "KARYAWAN SWASTA",
"confidence": "95.60%"
},
"licenseType": {
"value": "SIM A",
"confidence": "99.12%"
},
"validUntil": {
"value": "2027-09-25",
"confidence": "98.05%"
},
"issuedDate": {
"value": "2022-09-25",
"confidence": "97.70%"
},
"issuingPlace": {
"value": "JAKARTA SELATAN",
"confidence": "98.15%"
},
"province": {
"value": "METRO JAYA",
"confidence": "97.44%"
},
"signature": null,
"photo": null
},
"missingFields": []
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"transactionId": "1e6b47ac-05d9-42f8-9c73-6a08b21fd5e7",
"verificationType": "idn_driving_license_details_extraction",
"metadata": null,
"createdAt": "2026-09-01T05:18:29.000000Z"
}
Authorizations
Use your API token as a Bearer token in the Authorization header.
Headers
Example:
"Bearer {your_api_token}"
Body
multipart/form-data
Response
The document was processed. Check data.outcome and verificationStatus to determine the result.

