---
title: Get a bucket
description: Returns one bucket.
doc_version: 0.1.0-preview
last_updated: 2026-09-14
---

# Get a bucket

`GET /v1/workspaces/{workspaceId}/buckets/{bucketId}`

Returns one bucket.

## 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.
- `bucketId` (string) — The storage bucket id.

## Example request

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

## Example response

```json
{
  "id": "bktA1b2C3d4E5",
  "workspaceId": "wspQ7WsH2Np5L",
  "name": "catalog-assets",
  "provider": "gcp",
  "location": "us",
  "storageClass": "standard",
  "permission": "private",
  "phase": "active",
  "availability": "online",
  "objectCount": 0,
  "revision": 1,
  "createdAt": "2026-09-15T18:00:00.000Z"
}
```

## Sitemap

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