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

# Get KYC inquiry result

> Returns the inquiry's **`status`** and lightweight metadata - enough to drive your server logic, not a full case file. For full details information, use the InkLink dashboard. **Richer payloads here are on the roadmap**; when they ship, we will keep the response **backwards compatible** with today's fields.



## OpenAPI

````yaml /api-reference/openapi.json GET /kyc/inquiry/{id}/result
openapi: 3.0.3
info:
  title: API 2.0
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.inklink.com/api/v1
security: []
tags: []
paths:
  /kyc/inquiry/{id}/result:
    get:
      summary: Get KYC inquiry result
      description: >-
        Returns the inquiry's **`status`** and lightweight metadata - enough to
        drive your server logic, not a full case file. For full details
        information, use the InkLink dashboard. **Richer payloads here are on
        the roadmap**; when they ship, we will keep the response **backwards
        compatible** with today's fields.
      operationId: getKycInquiryResult
      parameters:
        - name: api-key
          in: header
          schema:
            type: string
            example: secret_live_xxx
          required: true
        - name: id
          in: path
          required: true
          description: KYC inquiry id (`kyc_iq_…`).
          schema:
            type: string
            example: kyc_iq_xxx
      responses:
        '200':
          description: Result found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: kyc_res_xxx
                  inquiry_id:
                    type: string
                  status:
                    type: string
                    enum:
                      - pending
                      - manual_review
                      - approved
                      - rejected
                  submitted_at:
                    type: string
                    format: date-time
                  completed_at:
                    type: string
                    format: date-time
                    nullable: true
                  created_at:
                    type: string
                    format: date-time
                  updated_at:
                    type: string
                    format: date-time
        '404':
          description: Inquiry result not found or access denied.

````