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"
}
]
}
}
List all agentic wallets for the authenticated user
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"
}
]
}
}
Bearer YOUR_ACCESS_TOKENcurl -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"
}
]
}
}