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

# List Agentic Wallets

> List all agentic wallets for the authenticated user

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET '/v1/agentic-wallets' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "wallets": [
        {
          "wallet_id": "aw_01abc123",
          "name": "Production Agent Wallet",
          "wallet_address": "0x742d35Cc...",
          "chain": "base",
          "status": "active",
          "balance": 250.00,
          "connectors_count": 2,
          "created_at": "2026-04-01T12:00:00Z"
        }
      ]
    }
  }
  ```
</ResponseExample>
