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

# Read Organization



## OpenAPI

````yaml /api-reference/openapi.json get /api/workspaces/{workspace_id}
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/workspaces/{workspace_id}:
    get:
      tags:
        - workspaces
      summary: Read Organization
      operationId: read_organization_api_workspaces__workspace_id__get
      parameters:
        - name: workspace_id
          in: path
          required: true
          schema:
            type: string
            title: Workspace Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrganizationRead:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        slug:
          type: string
          title: Slug
        type:
          type: string
          title: Type
        plan_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Plan Slug
        plan_tier:
          anyOf:
            - type: string
            - type: 'null'
          title: Plan Tier
        license_type:
          anyOf:
            - type: string
            - type: 'null'
          title: License Type
        license_key:
          anyOf:
            - type: string
            - type: 'null'
          title: License Key
        license_expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: License Expires At
        max_users:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Users
        max_datasets:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Datasets
        max_total_scans:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Total Scans
        max_concurrent_scans:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Scans
        max_queue_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Queue Size
        max_dataset_size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Dataset Size Bytes
        max_total_storage_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Total Storage Bytes
        logo_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Logo Url
        billing_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Billing Email
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
        member_count:
          type: integer
          title: Member Count
          default: 0
      type: object
      required:
        - id
        - name
        - slug
        - type
      title: OrganizationRead
      description: Wire-format for a workspace of ``type='organization'``.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````