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/

FilterNotes
networkmainnet, sepolia, etc.
wallet_addressLook up a specific wallet
wallet_typeE.g. keon
statusWallet status
is_verifiedtrue for verified wallets
is_activetrue for active wallets
Code
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

Code
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).

Code
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.

ParameterNotes
networkOptional
Code
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.

Code
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.

ParameterRequiredNotes
wallet_addressyesAddress to look up
networknoOptional filter
Code
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