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

# Get Agentic Wallet

> Get details of a specific agentic wallet

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

<ParamField path="walletId" type="string" required>
  The wallet ID (starts with `aw_`).
</ParamField>

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

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "wallet_id": "aw_01abc123",
      "name": "Production Agent Wallet",
      "wallet_address": "0x742d35Cc6634C0532925a3b8D4C9C2A5Ef8C2B1",
      "chain": "base",
      "status": "active",
      "balance": 250.00,
      "assets": {
        "USDC": 250.00
      },
      "limits": {
        "per_transaction": 100,
        "daily": 1000,
        "monthly": 10000
      },
      "auto_fund": {
        "enabled": false
      },
      "x402": {
        "enabled": true,
        "max_amount": 1.00
      },
      "connectors_count": 2,
      "total_spent": 1250.00,
      "total_transactions": 45,
      "created_at": "2026-04-01T12:00:00Z"
    }
  }
  ```
</ResponseExample>
