---
title: "List vaults"
method: GET
path: "/vaults"
tags: ["Vaults"]
---

# List vaults

`GET /vaults`

Lists vaults using ID-based pagination. See [vaults](https://developers.openai.com/api/docs/guides/agents-api/tools/vaults).

## Query parameters

- `order` 'asc' | 'desc' — The order in which paginated resources are returned.
- `limit` integer, nullable
- `status` union — One or more lifecycle statuses to include when listing vaults or credentials.
  - 'active' | 'archived' — Whether a vault or credential is active or archived.
  - VaultStatusParam[]
- `after` string

## Response `200`

A page of vaults.

- VaultListResource — A page of Agents API resources, with IDs for retrieving additional pages.
  - `object` 'list', required — The object type, which is always `list`.
  - `data` VaultResource[], required — The resources returned in this page, in the requested sort order.
    - `id` string, required — The ID of the vault.
    - `object` 'vault', required — The object type. Always `vault`.
    - `name` string, nullable, required — The human-readable name of the vault, if set.
    - `metadata` object, required — Key-value pairs associated with the vault, such as an application or team identifier.
    - `created_at` integer, required — The Unix timestamp, in seconds, when the vault was created.
  - `first_id` string, nullable, required — The ID of the first resource in `data`, or `null` if the page is empty.
  - `last_id` string, nullable, required — The ID of the last resource in `data`, or `null` if the page is empty. Pass this as `after` with the same order and filters.
  - `has_more` boolean, required — Whether there are more resources to retrieve after this page.

## Other responses

- `400` — The request was invalid.
- `401` — Authentication or project context was missing.
- `403` — The API key lacks the required management permission.
- `404` — The requested vault or credential was not found.
- `409` — The request conflicted with the current vault state.
- `500` — An internal error occurred.
- `503` — The service is temporarily unavailable.

## Changes

- **2026-09-10** `f2dae1a9aced` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/openai/apis/openapi/changes/vaults/get.md)

---

[API](https://skmtc.dev/openai/apis/openapi.md) · [All operations](https://skmtc.dev/openai/apis/openapi/llms.txt) · [OpenAPI document](https://skmtc.dev/openai/apis/openapi/revisions/c40bf0ba89d2?raw)
