> ## 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 Business by ID (GET)

> Retrieves a business by its ID



## OpenAPI

````yaml GET /business/{id}
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/{id}:
    get:
      description: Retrieves a business by its ID
      parameters:
        - name: id
          in: path
          description: Business ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Business details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Business'
        '404':
          description: Business not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Business:
      required:
        - id
        - name
        - email
        - status
      type: object
      properties:
        id:
          description: Unique business identifier
          type: string
        name:
          description: Business name
          type: string
        email:
          description: Business email address
          type: string
          format: email
        status:
          description: Business status
          type: string
          enum:
            - active
            - pending
            - suspended
            - verified
        created_at:
          description: Business creation timestamp
          type: string
          format: date-time
        updated_at:
          description: Last update timestamp
          type: string
          format: date-time
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````