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

# Get KYB status (GET)

> Gets the current KYB status for a business



## OpenAPI

````yaml GET /business/kyb/status
openapi: 3.1.0
info:
  title: Business API
  description: >-
    API for managing business entities, KYB (Know Your Business) processes, and
    business verification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: http://sandbox.mintlify.com
security:
  - bearerAuth: []
paths:
  /business/kyb/status:
    get:
      description: Gets the current KYB status for a business
      parameters:
        - name: business_id
          in: query
          description: Business ID to check KYB status for
          required: true
          schema:
            type: string
      responses:
        '200':
          description: KYB status retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KYBStatus'
        '404':
          description: Business not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    KYBStatus:
      required:
        - status
        - progress
      type: object
      properties:
        status:
          description: Current KYB status
          type: string
          enum:
            - not_started
            - in_progress
            - pending_review
            - approved
            - rejected
        progress:
          description: Completion percentage
          type: integer
          minimum: 0
          maximum: 100
        last_updated:
          description: Last status update timestamp
          type: string
          format: date-time
        next_steps:
          description: Next required actions
          type: array
          items:
            type: string
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````