Wallet

Get the current wallet

Returns the wallet associated with the authenticated PID. The wallet belongs to the PID, never to a specific login provider — unlinking Google does not affect it. Only public association fields are exposed (chain, address, status). No key material is ever stored or returned (PRD §9).

Deprecated

GET
/wallet/me

Returns the wallet associated with the authenticated PID. The wallet belongs to the PID, never to a specific login provider — unlinking Google does not affect it.

Only public association fields are exposed (chain, address, status). No key material is ever stored or returned (PRD §9).

Authorization

cookieAuth
pid_access<token>

JWT access token set by /auth/google/callback or /auth/refresh

In: cookie

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/wallet/me"
{  "id": "a3f2c9e0-4b7d-4c1a-8e5f-0d1a2b3c4d5e",  "chain": "solana",  "address": "2nBoE7F2vLkGtvXh7QnUhvW5mYPbRmY8GXJqPz9tKcQ",  "status": "active",  "createdAt": "2026-08-10T12:00:00.000Z"}