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

# Get KYB answer

> Retrieve a specific KYB answer



## OpenAPI

````yaml get /v1/kyb/{kyb_id}
openapi: 3.0.0
info:
  title: KYB API
  version: 1.0.0
  description: API documentation for Know Your Business verification flows
servers: []
security:
  - bearerAuth: []
paths:
  /v1/kyb/{kyb_id}:
    parameters:
      - name: kyb_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: KYB answer UUID
    get:
      tags:
        - KYB Answers
      summary: Get KYB answer
      description: Retrieve a specific KYB answer
      responses:
        '200':
          description: KYB answer details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KYBAnswer'
components:
  schemas:
    KYBAnswer:
      type: object
      properties:
        actor_id:
          type: string
          format: uuid
        flow_name:
          type: string
        question_name:
          type: string
        previous_step:
          type: string
        answer:
          type: object
        created_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````