> ## Documentation Index
> Fetch the complete documentation index at: https://docs.idmetagroup.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PH KYB Comprehensive

> Lightweight Know Your Business verification for Philippine companies. Asynchronous.

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](/api-reference/know-your-business/philippines/kyb-lite) instead.

## Data source

Company information is retrieved from the **Securities and Exchange Commission (SEC)**.


## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/kyb/ph/comprehensive
openapi: 3.0.3
info:
  title: IDmeta API
  description: IDmeta verification and integration API.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://{environment-subdomain}.idmetagroup.com
    description: Your environment (replace `{environment-subdomain}`)
    variables:
      environment-subdomain:
        default: integrate
        description: IDmeta environment subdomain
security:
  - bearerAuth: []
tags:
  - name: Processes
    description: Verification process endpoints
  - name: Trust Flow Links
    description: Trust Flow link generation endpoints
  - name: Compliance
    description: Compliance verification endpoints
  - name: Government Data
    description: Government data verification endpoints
  - name: Alternative Verifications
    description: Alternative verification and intelligence endpoints
  - name: OCR
    description: Document OCR extraction endpoints
paths:
  /api/v3/verifications/kyb/ph/comprehensive:
    post:
      tags:
        - KYB
      summary: PH KYB Comprehensive
      description: >-
        Run a comprehensive Know Your Business verification on a Philippine
        company by its SEC registration number. Returns synchronously with
        company information, shareholders, and major persons (directors /
        officers).
      operationId: phKybComprehensiveVerificationV3
      parameters:
        - name: Accept
          in: header
          required: false
          schema:
            type: string
            default: application/json
        - name: Content-Type
          in: header
          required: false
          schema:
            type: string
            default: application/json
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: d7710108-d8a5-4b98-bcc4-38392cf6aeaf
            examples:
              default:
                summary: PH KYB Comprehensive request
                value:
                  trustValidationId: <string>
                  trustFlowId: 0
                  businessIdentificationNumber: CS200816509
      responses:
        '200':
          description: PH KYB comprehensive verification processed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdnKybComprehensiveResponse'
              example:
                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
components:
  schemas:
    IdnKybComprehensiveResponse:
      type: object
      description: Successful response for Indonesia KYB comprehensive verification.
      properties:
        type:
          type: string
          description: Verification type discriminator.
          example: verification.idn_kyb_comprehensive
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            orderNo:
              type: string
            lastUpdated:
              type: string
            userDefinedId:
              type: string
            result:
              type: object
              description: Registry payload, including company information when available.
              additionalProperties: true
        verificationStatus:
          type: string
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
        trustValidationId:
          type: string
        verificationType:
          type: string
        metadata:
          type: object
          nullable: true
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````