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

# Show workspace

> Get workspace details by ID or slug



## OpenAPI

````yaml /swagger.json get /v1/workspaces/{id}
openapi: 3.0.1
info:
  title: Scute API
  version: v1
  description: API for managing users in Scute applications
servers:
  - url: https://{defaultHost}
    variables:
      defaultHost:
        default: api.scute.io
  - url: http://localhost:3333
    description: Development server
security:
  - apiSecret: []
    userAccess: []
paths:
  /v1/workspaces/{id}:
    parameters:
      - name: id
        in: path
        description: Workspace ID or slug
        required: true
        schema:
          type: string
    get:
      tags:
        - Workspaces
      summary: Show workspace
      description: Get workspace details by ID or slug
      operationId: showWorkspace
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  workspace:
                    type: object
                    properties:
                      id:
                        type: string
                      name:
                        type: string
                      slug:
                        type: string
                        nullable: true
                      personal:
                        type: boolean
                      membership:
                        type: object
                        nullable: true
                        properties:
                          role:
                            type: string
                            enum:
                              - owner
                              - admin
                              - member
                          created_at:
                            type: string
                            format: date-time
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
                      settings:
                        type: object
                      is_pro:
                        type: boolean
                      public_signup:
                        type: boolean
                      user_info_requirement:
                        type: string
                      logo_url:
                        type: string
                        nullable: true
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '403':
          description: forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '404':
          description: not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
      security:
        - userAccess: []
components:
  securitySchemes:
    apiSecret:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Secret token
    userAccess:
      type: apiKey
      name: X-Authorization
      in: header
      description: User Access token

````