---
title: "Get vault information"
method: GET
path: "/vault/{id}"
tags: ["Vaults"]
---

# Get vault information

`GET /vault/{id}`

Retrieve detailed information about a specific vault, including storage configuration, chunking strategy, and usage statistics. Returns vault metadata, bucket information, and vector storage details.

## Path parameters

- `id` string, required

## Response `200`

Vault information retrieved successfully

- object
  - `id` string, required — Vault identifier
  - `name` string, required — Vault name
  - `description` string — Vault description
  - `filesBucket` string, required — S3 bucket for document storage
  - `vectorBucket` string, nullable — S3 bucket for vector embeddings
  - `indexName` string — Search index name
  - `region` string, required — AWS region
  - `kmsKeyId` string — KMS key for encryption
  - `chunkStrategy` object — Document chunking strategy configuration
    - `method` string — Chunking method (e.g., 'semantic', 'fixed')
    - `overlap` integer — Number of overlapping tokens between chunks
    - `chunkSize` integer — Target size for each chunk in tokens
    - `minChunkSize` integer — Minimum chunk size in tokens
  - `enableGraph` boolean — Whether GraphRAG is enabled
  - `totalObjects` integer — Number of stored documents
  - `totalBytes` integer — Total storage size in bytes
  - `totalVectors` integer — Number of vector embeddings
  - `metadata` object — Additional vault metadata
  - `createdAt` string, date-time, required — Vault creation timestamp
  - `updatedAt` string, date-time — Last update timestamp

## Other responses

- `400` — Invalid vault ID provided
- `401` — Invalid API key
- `403` — API key does not have vault service access
- `404` — Vault not found or access denied

---

[API](https://skmtc.net/casemark/apis/case-dev-api.md) · [All operations](https://skmtc.net/casemark/apis/case-dev-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/casemark/case-dev-api/versions/5b7e64e6d6f9/schema)
