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

# Get a workspace

> Retrieve a single workspace by id. The workspace is identified by the `workspace_id` path
parameter alone; the `x-hh-workspace-id` header does not participate.

The returned `name` is the workspace's display name. The globally unique slug the workspace
was assigned at creation is an internal detail and is not part of this contract.




## OpenAPI

````yaml https://raw.githubusercontent.com/honeyhiveai/honeyhive-openapi/main/control_plane_openapi.yaml get /v1/workspaces/{workspace_id}
openapi: 3.1.0
info:
  title: HoneyHive Control Plane API
  description: >
    Manage HoneyHive control-plane resources: workspaces, projects and alerts.


    Authentication requires a fine-grained control-plane API key (values

    start with `hh_fgcp_`), sent as `Authorization: Bearer <api-key>`.

    Project API keys used with the Data Plane API will not work here. Create

    a key in the HoneyHive app under an organization's or workspace's

    **Settings → API Keys**, or see

    [Authorization](https://docs.honeyhive.ai/v2/control-plane-sdk-reference/typescript#authorization)

    for details.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: 1.9.0
servers:
  - url: https://api.cp.us.honeyhive.ai
security:
  - BearerAuth: []
tags:
  - name: Alerts
    description: >
      Define and manage alerts. Alerts evaluate event metrics on a schedule and
      trigger notifications when configured thresholds are crossed.
  - name: Projects
    description: >
      Create and manage projects within a workspace. A project is the container
      for the events, datasets, evaluations, and alerts logged against it.
  - name: Virtual Dataplanes
    description: >
      Create and manage virtual data planes. A virtual data plane is a logical
      tenant boundary inside an organization, hosted on a physical cluster;
      several virtual data planes commonly share one cluster. Workspaces live
      inside a virtual data plane.
  - name: Workspaces
    description: >
      Read and manage workspaces. A workspace groups the projects belonging to
      one team or environment, and owns the API keys and AI provider secrets its
      projects share.
paths:
  /v1/workspaces/{workspace_id}:
    get:
      tags:
        - Workspaces
      summary: Get a workspace
      description: >
        Retrieve a single workspace by id. The workspace is identified by the
        `workspace_id` path

        parameter alone; the `x-hh-workspace-id` header does not participate.


        The returned `name` is the workspace's display name. The globally unique
        slug the workspace

        was assigned at creation is an internal detail and is not part of this
        contract.
      operationId: getWorkspace
      parameters:
        - in: path
          name: workspace_id
          required: true
          schema:
            type: string
          description: The unique identifier of the workspace to retrieve
      responses:
        '200':
          description: Workspace retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWorkspaceResponse'
        '404':
          description: Workspace not found
components:
  schemas:
    GetWorkspaceResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          $ref: '#/components/schemas/WorkspaceItem'
      required:
        - success
        - data
      additionalProperties: false
      description: A single workspace
    WorkspaceItem:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
          description: Workspace display name
        description:
          type: string
          description: Workspace description
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: string
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: string
            - type: 'null'
      required:
        - id
        - name
        - description
        - created_at
      additionalProperties: false
      description: Workspace object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````

## Related topics

- [Workspaces](/v2/cli-reference/ref/workspaces.md)
- [Workspaces Methods](/v2/control-plane-sdk-reference/typescript/ref/workspaces/index.md)
- [GetWorkspaceRequest](/v2/control-plane-sdk-reference/typescript/ref/workspaces/GetWorkspaceRequest.md)
