---
title: Get a workspace
description: Confirms that the caller can access the workspace.
doc_version: 0.1.0-preview
last_updated: 2026-09-14
---

# Get a workspace

`GET /v1/workspaces/{workspaceId}`

Confirms that the caller can access the workspace. The response includes the workspace id.

## Authentication

Send `Authorization: Bearer <SPARK_API_KEY>`. Read the key from the
SPARK_API_KEY environment variable. Never print it.

## Path parameters

- `workspaceId` (string) — The workspace id.

## Example request

```bash
curl \
  --url "https://api.beta.graphon.ai/v1/workspaces/wspQ7WsH2Np5L" \
  --header "Authorization: Bearer $SPARK_API_KEY"
```

## Example response

```json
{
  "id": "wspQ7WsH2Np5L"
}
```

## Sitemap

See the full [sitemap](/sitemap.md) for all pages.
