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

> List company-wallet transfers (pool → user funding for cards), newest first.

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

List company-wallet transfers (pool → user funding for cards), newest first. Filter by public status: pending, funded, consumed, reclaimed, failed.

## Inputs

| Field    | Type                                                               | Description                       |
| -------- | ------------------------------------------------------------------ | --------------------------------- |
| `status` | string: `pending` · `funded` · `consumed` · `reclaimed` · `failed` | Public status filter              |
| `limit`  | number                                                             | Max results (default 25, max 100) |

## Returns

| Field                  | Type    | Description                                                                   |
| ---------------------- | ------- | ----------------------------------------------------------------------------- |
| `message` *(required)* | string  | Human-readable summary.                                                       |
| `transfers`            | array   | Transfer objects (id, status, substatus, amount\_cents, cardholder\_id, ...). |
| `hasMore`              | boolean | Whether more pages exist.                                                     |

## Example call

```json theme={null}
{
  "tool": "list_transfers",
  "arguments": {}
}
```
