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

# List a user's vaulted cards

> Display fields for the cards a user has stored. Never card data.

Use it to skip enrollment for a returning user, and to pick the `id` to pass as `card_id` on a checkout authorization.

<ParamField query="user_id" type="string" required>The user whose cards to list.</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.agentcard.sh/api/v2/vault_cards?user_id=usr_8f3k2m" \
    -H "Authorization: Bearer $ORG_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "list",
    "data": [
      { "id": "vc_9m4t2p", "brand": "visa", "last4": "4832", "exp_month": 12, "exp_year": 2029, "created_at": "2026-09-02T18:41:07Z" }
    ]
  }
  ```
</ResponseExample>

The response never includes a card number or anything that could decrypt one.
