Keon Wallets Directory
A registry of Keon wallets that opted into discovery
A registry of Keon wallets that have opted in. It lets the network see usage stats and lets users look each other up by address.
Opt-in only. Wallets that don't register don't show up here.
List wallets
GET /api/dapps/keon-wallets/
| Filter | Notes |
|---|---|
network | mainnet, sepolia, etc. |
wallet_address | Look up a specific wallet |
wallet_type | E.g. keon |
status | Wallet status |
is_verified | true for verified wallets |
is_active | true for active wallets |
bash
1curl 'https://api.tokenkithq.io/api/dapps/keon-wallets/?network=mainnet&is_active=true' \2 -H 'api-key: YOUR_API_KEY'GET /api/dapps/keon-wallets/{id}/ - one wallet
bash
1curl 'https://api.tokenkithq.io/api/dapps/keon-wallets/123/' \2 -H 'api-key: YOUR_API_KEY'Register a wallet
POST /api/dapps/keon-wallets/
The wallet calls this on first launch (or once a user opts in).
bash
1curl -X POST 'https://api.tokenkithq.io/api/dapps/keon-wallets/' \2 -H 'api-key: YOUR_API_KEY' \3 -H 'Content-Type: application/json' \4 -d '{5 "wallet_address": "0x...",6 "network": "mainnet",7 "wallet_type": "keon"8 }'Stats
GET /api/dapps/keon-wallets/stats/
Aggregate counts (total wallets, active, verified) for dashboards.
| Parameter | Notes |
|---|---|
network | Optional |
bash
1curl 'https://api.tokenkithq.io/api/dapps/keon-wallets/stats/?network=mainnet' \2 -H 'api-key: YOUR_API_KEY'Update activity counters
POST /api/dapps/keon-wallets/{id}/update_activity/
The wallet calls this periodically to keep its last_activity_at and transaction count fresh.
bash
1curl -X POST 'https://api.tokenkithq.io/api/dapps/keon-wallets/123/update_activity/' \2 -H 'api-key: YOUR_API_KEY' \3 -H 'Content-Type: application/json' \4 -d '{5 "transaction_count": 42,6 "last_activity_at": "2026-05-10T12:00:00Z"7 }'Look up a wallet by address
GET /api/dapps/keon-wallet-lookup/
The "is this address a registered Keon wallet?" endpoint.
| Parameter | Required | Notes |
|---|---|---|
wallet_address | yes | Address to look up |
network | no | Optional filter |
bash
1curl 'https://api.tokenkithq.io/api/dapps/keon-wallet-lookup/?wallet_address=0x...&network=mainnet' \2 -H 'api-key: YOUR_API_KEY'See also
- Encrypted Sync (Keon) - the cross-device sync endpoint Keon wallets use
- Account Class Hashes - the templates used to deploy these wallets