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

# Get Workspace Endpoint

> Return workspace details and members. Workspace admins only.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/workspaces/{workspace_id}
openapi: 3.1.0
info:
  description: >
    Create and run form-filling voice agents, and read back the conversations
    they had.


    Send your API key on every request as `Authorization: Bearer fb_live_...`.

    A key belongs to one workspace and only reaches that workspace's agents.
    Create

    and revoke keys from Settings in the web app; keys cannot manage other keys.
  title: FormBharo API
  version: 1.0.0
servers:
  - description: Production
    url: https://form-fill-agent-backend.artpark.ai
security:
  - apiKey: []
paths:
  /api/v1/workspaces/{workspace_id}:
    get:
      tags:
        - Workspaces
      summary: Get Workspace Endpoint
      description: Return workspace details and members. Workspace admins only.
      operationId: get_workspace_endpoint_api_v1_workspaces__workspace_id__get
      parameters:
        - in: path
          name: workspace_id
          required: true
          schema:
            title: Workspace Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceDetail'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceDetail:
      description: Workspace details + membership, for workspace admins.
      properties:
        admin_emails:
          items:
            type: string
          title: Admin Emails
          type: array
        current_user_email:
          title: Current User Email
          type: string
        id:
          title: Id
          type: string
        is_owner:
          title: Is Owner
          type: boolean
        is_personal:
          title: Is Personal
          type: boolean
        name:
          title: Name
          type: string
        owner_email:
          title: Owner Email
          type: string
      required:
        - id
        - name
        - owner_email
        - admin_emails
        - is_personal
        - is_owner
        - current_user_email
      title: WorkspaceDetail
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    apiKey:
      bearerFormat: fb_live_...
      scheme: bearer
      type: http

````