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

# Fetch KYC

> Retrieve result of document verification 



## OpenAPI

````yaml /api_reference/nft.yaml get /identityDocuments/verifications/{id}
openapi: 3.1.0
info:
  version: '1.0'
  title: NFT API
  summary: API to enable direct NFT purchasing
  description: Reference for Sardine Crypto API
servers:
  - url: https://api.sandbox.sardine.ai/v1
    description: Sandbox
  - url: https://api.sardine.ai/v1
    description: Prod Server
security:
  - {}
paths:
  /identityDocuments/verifications/{id}:
    get:
      tags:
        - Identity
      summary: Fetch KYC
      description: 'Retrieve result of document verification '
      operationId: get-identityDocuments
      parameters:
        - name: type
          in: query
          description: >-
            Type of request. Set to `custom` if you build your own UI to capture
            photos, `secure.me` if you use au10tix Web UI, `mobilesdk` if you
            use au10tix native mobile SDK
          schema:
            type: string
        - name: sessionKey
          in: query
          description: uuid that identifies the given customer session or transaction
          schema:
            type: string
            format: uuid
        - name: customerId
          in: query
          description: ID for Customer
          schema:
            type: string
            format: uuid
        - name: id
          in: path
          description: ID of KYC
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KYC'
              examples:
                example-1:
                  value:
                    verificationId: d67fc8a6-d930-4857-882d-00000000000
                    status: complete
                    documentData:
                      type: driver_license
                      number: S1585910
                      dateOfBirth: '1981-02-17'
                      dateOfIssue: '2020-02-16'
                      dateOfExpiry: '2025-02-17'
                      issuingCountry: US
                      firstName: PARIS WHITNEY
                      middleName: ''
                      lastName: HILTON
                      gender: female
                      address: 936 SE Dolphin Dr, Stuart, Florida 34996
                    verification:
                      riskLevel: high
                      forgeryLevel: low
                      documentMatchLevel: not_applicable
                      imageQualityLevel: high
                      faceMatchLevel: not_applicable
      security:
        - {}
      servers:
        - url: https://api.sandbox.sardine.ai/v1
          description: Sandbox
        - url: https://api.sardine.ai/v1
          description: Prod Server
components:
  schemas:
    KYC:
      type: object
      title: KYC
      properties:
        verificationId:
          type: string
          description: ID of Verification
        status:
          type: string
          description: Status of check
        documentData:
          type: object
          properties:
            type:
              type: string
              description: Type of document
            number:
              type: string
              description: Document number
            dateOfBirth:
              type: string
              description: Date of Birth
            dateOfIssue:
              type: string
              description: Issuance date of document
            dateOfExpiry:
              type: string
              description: Expiry date of document
            issuingCountry:
              type: string
              description: ISO code of country document issued in
            firstName:
              type: string
              description: First name on document
            middleName:
              type: string
              description: Middle name on document
            lastName:
              type: string
              description: Last name on document
            gender:
              type: string
              description: Gender on document
            address:
              type: string
              description: Address on document
        verification:
          type: object
          properties:
            riskLevel:
              type: string
              description: Risk level of this document
            forgeryLevel:
              type: string
              description: Forgery level
            documentMatchLevel:
              type: string
              description: >-
                Measure of match between document and information input by the
                user
            imageQualityLevel:
              type: string
              description: Quality of image uploaded
            faceMatchLevel:
              type: string
              description: Level of match between selfie and face in ID
      x-examples:
        example-1:
          verificationId: d67fc8a6-d930-4857-882d-00000000000
          status: complete
          documentData:
            type: driver_license
            number: S1585910
            dateOfBirth: '1981-02-17'
            dateOfIssue: '2020-02-16'
            dateOfExpiry: '2025-02-17'
            issuingCountry: US
            firstName: PARIS WHITNEY
            middleName: ''
            lastName: HILTON
            gender: female
            address: 936 SE Dolphin Dr, Stuart, Florida 34996
          verification:
            riskLevel: high
            forgeryLevel: low
            documentMatchLevel: not_applicable
            imageQualityLevel: high
            faceMatchLevel: not_applicable
      x-internal: true
      x-stoplight:
        id: 04xt7e5k9lcmw

````