> ## 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.

# IDN KYB Lite

> Lightweight Know Your Business verification for Indonesian companies. Synchronous.

Run a Know Your Business verification on an Indonesian company by name.

Use this endpoint when you only need basic company existence and status information; for shareholder and director records use [IDN KYB Comprehensive](/api-reference/know-your-business/indonesia/kyb-comprehensive) instead.

## Data source

Company information is retrieved from **Administrasi Hukum Umum (AHU)**.


## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/kyb/idn/lite
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/idn/lite:
    post:
      tags:
        - KYB
      summary: IDN KYB Lite
      description: >-
        Run a lightweight Know Your Business verification on an Indonesian
        company by name. Returns synchronously.
      operationId: idnKybLiteVerificationV3
      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: 39690c1b-fb8f-4da5-adc7-5a98e95c7d55
            examples:
              default:
                summary: IDN KYB Lite request
                value:
                  trustValidationId: '{your_trust_validation_id}'
                  trustFlowId: 0
                  companyName: <string>
      responses:
        '200':
          description: Verification processed successfully (sync).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KybSyncResponse'
              example:
                success: true
                message: KYB verification processed successfully
                data:
                  companyBasicInformation:
                    total: 1
                    data:
                      - address: >-
                          Example Commercial Area, Jl. Contoh Raya RT: 000 RW:
                          000, Jakarta Selatan
                        name:
                          companyName: PT Bintang Lombok
                          isTranslated: false
                        companyStatus: active
                        companyRefId: '19889'
                verificationStatus: VERIFIED
                verificationStatusCode: 3
                trustFlowId: 151
                trustValidationId: 3787efb7-b73a-43ea-9e07-e90e2a9b28ab
                verificationType: idn_kyb_lite
                metadata: null
components:
  schemas:
    KybSyncResponse:
      type: object
      description: >-
        Synchronous KYB response envelope. `data.result` contains the upstream
        registry payload (typically with `CompanyInformation`, `Shareholders`,
        and `majorPerson` sections).
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            code:
              type: string
              description: Upstream response code ("200" on success).
            result:
              type: object
              additionalProperties: true
              description: Registry payload.
            message:
              type: string
            lastUpdated:
              type: string
            orderNo:
              type: string
              description: Upstream order identifier for support / lookup.
        verificationStatus:
          type: string
          example: VERIFIED
        verificationStatusCode:
          type: integer
          example: 3
        trustFlowId:
          type: integer
        trustValidationId:
          type: string
          format: uuid
        verificationType:
          type: string
          description: >-
            Plan identifier (for example, `ph_kyb_comprehensive`,
            `aus_kyb_comprehensive`).
        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.

````