Retrieve the user’s agent smart account address for a specific app. Returns null if the user has not installed the app.
Request
The unique identifier of the app
The Ethereum address of the user’s wallet
Response
The agent smart account address, or null if the app is not installed
curl -X POST https://api.heyvincent.ai/user/123/agent-account \
-H "Content-Type: application/json" \
-d '{"userControllerAddress": "0xUserWalletAddress..."}'
{
"agentAddress": "0xAgentSmartAccountAddress..."
}