PH KYB Comprehensive
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"trustValidationId": "<string>",
"trustFlowId": 0,
"businessIdentificationNumber": "CS200816509"
}
'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive"
payload = {
"trustValidationId": "<string>",
"trustFlowId": 0,
"businessIdentificationNumber": "CS200816509"
}
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({
trustValidationId: '<string>',
trustFlowId: 0,
businessIdentificationNumber: 'CS200816509'
})
};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive', 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/kyb/ph/comprehensive",
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([
'trustValidationId' => '<string>',
'trustFlowId' => 0,
'businessIdentificationNumber' => 'CS200816509'
]),
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/kyb/ph/comprehensive"
payload := strings.NewReader("{\n \"trustValidationId\": \"<string>\",\n \"trustFlowId\": 0,\n \"businessIdentificationNumber\": \"CS200816509\"\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/kyb/ph/comprehensive")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"trustValidationId\": \"<string>\",\n \"trustFlowId\": 0,\n \"businessIdentificationNumber\": \"CS200816509\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive")
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 \"trustValidationId\": \"<string>\",\n \"trustFlowId\": 0,\n \"businessIdentificationNumber\": \"CS200816509\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "KYB verification completed",
"data": {
"companyInformation": {
"data": [
{
"companyName": "Sample Corporation",
"companyRefId": "CS200816509",
"registrationNumber": "CS200816509",
"status": "ACTIVE",
"address": "123 Ayala Avenue, Makati City, Metro Manila",
"directors": [],
"shareholders": []
}
]
}
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"trustFlowId": 0,
"trustValidationId": "{your_trust_validation_id}",
"verificationType": "ph_kyb_comprehensive",
"metadata": null
}Philippines
PH KYB Comprehensive
Lightweight Know Your Business verification for Philippine companies. Asynchronous.
POST
/
api
/
v3
/
verifications
/
kyb
/
ph
/
comprehensive
PH KYB Comprehensive
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"trustValidationId": "<string>",
"trustFlowId": 0,
"businessIdentificationNumber": "CS200816509"
}
'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive"
payload = {
"trustValidationId": "<string>",
"trustFlowId": 0,
"businessIdentificationNumber": "CS200816509"
}
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({
trustValidationId: '<string>',
trustFlowId: 0,
businessIdentificationNumber: 'CS200816509'
})
};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive', 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/kyb/ph/comprehensive",
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([
'trustValidationId' => '<string>',
'trustFlowId' => 0,
'businessIdentificationNumber' => 'CS200816509'
]),
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/kyb/ph/comprehensive"
payload := strings.NewReader("{\n \"trustValidationId\": \"<string>\",\n \"trustFlowId\": 0,\n \"businessIdentificationNumber\": \"CS200816509\"\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/kyb/ph/comprehensive")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"trustValidationId\": \"<string>\",\n \"trustFlowId\": 0,\n \"businessIdentificationNumber\": \"CS200816509\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/kyb/ph/comprehensive")
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 \"trustValidationId\": \"<string>\",\n \"trustFlowId\": 0,\n \"businessIdentificationNumber\": \"CS200816509\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "KYB verification completed",
"data": {
"companyInformation": {
"data": [
{
"companyName": "Sample Corporation",
"companyRefId": "CS200816509",
"registrationNumber": "CS200816509",
"status": "ACTIVE",
"address": "123 Ayala Avenue, Makati City, Metro Manila",
"directors": [],
"shareholders": []
}
]
}
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"trustFlowId": 0,
"trustValidationId": "{your_trust_validation_id}",
"verificationType": "ph_kyb_comprehensive",
"metadata": null
}Run a comprehensive Know Your Business verification on a Philippine company using its SEC Business Identification Number (BIN). The response includes company information, shareholders, and major persons (directors / officers).
Use this endpoint when you need full company detail including ownership and director records; for basic company existence checks use PH KYB Lite instead.
Data source
Company information is retrieved from the Securities and Exchange Commission (SEC).Authorizations
Use Bearer {your_api_token} in the Authorization header.
Body
application/json
The body is of type any.
Response
200 - application/json
PH KYB comprehensive verification processed successfully
Successful response for Indonesia KYB comprehensive verification.
⌘I

