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

> Get one card's summary (no card number): balance, status, expiry, cardholder.

Connect to `https://mcp.agentcard.sh/mcp` with your **organization credential** (`client_id` + `client_secret`, or the org access token).

**Behavior:** read-only.

## What it does

Get one card's summary (no card number): balance, status, expiry, cardholder.

## Inputs

| Field                  | Type   | Description |
| ---------------------- | ------ | ----------- |
| `card_id` *(required)* | string | The card id |

## Returns

| Field                  | Type   | Description                                                                        |
| ---------------------- | ------ | ---------------------------------------------------------------------------------- |
| `message` *(required)* | string | Human-readable summary.                                                            |
| `card`                 | object | id, cardholderId, last4, expiry, spendLimitCents, balanceCents, status, createdAt. |

## Example call

```json theme={null}
{
  "tool": "get_card",
  "arguments": {
    "card_id": "\u2026"
  }
}
```
