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

# Driving License

> Verify Philippine driver's license details with LTO records.



## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/philippines/driving-license
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/philippines/driving-license:
    post:
      tags:
        - Government Data
      summary: Philippines Driving License
      description: Verify Philippines driving license details (API v3).
      operationId: philippinesDrivingLicenseVerificationV3
      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
        - name: Authorization
          in: header
          required: true
          description: Bearer token (`Bearer {your_api_token}`).
          schema:
            type: string
            example: Bearer {your_api_token}
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PhLtoDriversLicenseV3Request'
            examples:
              default:
                summary: Philippines driving license verification request (v3)
                value:
                  licenseNumber: <string>
                  trustFlowId: 0
                  trustValidationId: '{your_trust_validation_id}'
      responses:
        '200':
          description: Philippines driving license processed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhLtoDriversLicenseV3Response'
              example:
                success: true
                message: Philippines Driving License processed successfully
                data:
                  isValid: true
                verificationStatus: VERIFIED
                verificationStatusCode: 3
                trustFlowId: 0
                trustValidationId: '{your_trust_validation_id}'
                verificationType: philippines_driving_license
                metadata: null
components:
  schemas:
    PhLtoDriversLicenseV3Request:
      type: object
      required:
        - licenseNumber
        - trustFlowId
        - trustValidationId
      properties:
        licenseNumber:
          type: string
          description: Philippines LTO driver license number.
        trustFlowId:
          type: integer
          description: Trust flow ID for the verification.
        trustValidationId:
          type: string
          description: Trust validation session ID (UUID).
    PhLtoDriversLicenseV3Response:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            isValid:
              type: boolean
              description: Whether the license details were validated successfully.
        verificationStatus:
          type: string
          description: Human-readable verification outcome.
        verificationStatusCode:
          type: integer
          description: Numeric verification outcome code.
        trustFlowId:
          type: integer
          description: Trust flow ID associated with this verification.
        trustValidationId:
          type: string
          format: uuid
          description: Trust validation session ID returned for correlation.
        verificationType:
          type: string
          description: Canonical verification product key.
        metadata:
          type: object
          additionalProperties: true
          description: Additional fields returned by the verifier (structure may vary).
          properties:
            dob:
              type: string
              description: Date of birth (format as returned by the service).
            user_id:
              type: string
            fullname:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````