Skip to main content
GET
/
v1
/
agentic-wallets
curl -X GET '/v1/agentic-wallets' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "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"
      }
    ]
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
curl -X GET '/v1/agentic-wallets' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "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"
      }
    ]
  }
}