> ## 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.

# Get a preset

> One saved preset, its rules in plain words, and where it is attached.

Takes a platform access token or an API key. See [Set rules on a card](/vault/set-rules-on-a-card).

<ParamField path="name" type="string" required>The preset's name.</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.agentcard.sh/api/v2/vault/presets/office-supplies \
    -H "Authorization: Bearer $ORG_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "vault_preset",
    "name": "office-supplies",
    "id": "cmtvwbc0g000bjpcc88yiyx8z",
    "version": 1,
    "summary": "Up to $50.00 per day. Merchants: EXAMPLE SHOP, ACME. Currency: USD.",
    "attachments": [
      { "kind": "card", "target_id": "cmtvwbbzj0006jpccycjrkqy4", "last4": "7318" }
    ]
  }
  ```
</ResponseExample>

**Errors.** `404 preset_not_found` when no preset of that name is saved.
