KryptoGO Wallet Business Client API (1.0.0)
Download OpenAPI specification:Download
API for KryptoGO business clients to manage wallets and NFTs for their end-users. These APIs allow programmatic creation of wallets linked to user identifiers (phone/email) and management of associated NFTs. End-users must use the KryptoGO Wallet App to access and control their wallets.
Create User Wallet by Identifier
Creates a user account and their corresponding multi-chain wallets in the KryptoGO system, associated with either a phone number or an email address. If a user with the given identifier already exists, this operation will succeed without creating duplicates (idempotent).
Supported Chains: Bitcoin, Ethereum, Polygon, Solana, Binance Smart Chain, Tron, Arbitrum, Kucoin Community Chain, Ronin, Oasys.
End-User Action: The end-user needs to download the KryptoGO Wallet App and sign in with the same phone number or email to gain control of the created wallet.
Authorizations:
Request Body schema: application/jsonrequired
phone_number required | string <phone> The user's phone number. Required if |
string <email> The user's email address. Required if |
Responses
Request samples
- Payload
{- "phone_number": "+886912345678"
}
Response samples
- 200
- 400
- 500
{- "code": 0
}
Retrieve Wallet Addresses by Identifier
Retrieves the multi-chain wallet addresses associated with a user's phone number or email address.
Authorizations:
query Parameters
phone_number | string Example: phone_number=+886912345678 The user's phone number (E.164 format recommended). Required if |
string <email> Example: email=user@example.com The user's email address. Required if |
Responses
Response samples
- 200
- 400
- 404
{- "code": 0,
- "data": {
- "btc": "bc1qsk727gg82mrggwnhy0mxly3t7naqxkxymlmkd9",
- "eth": "0xc7d88AEd2355D7e37EA6f2AF52213C05ba820bCF",
- "matic": "0xc7d88AEd2355D7e37EA6f2AF52213C05ba820bCF",
- "arb": "0xc7d88AEd2355D7e37EA6f2AF52213C05ba820bCF",
- "kcc": "0xc7d88AEd2355D7e37EA6f2AF52213C05ba820bCF",
- "bsc": "0xc7d88AEd2355D7e37EA6f2AF52213C05ba820bCF",
- "sol": "HsJkT3DDyXUobtryLYhHdUgop9asd1R33aXnZSM69qFi",
- "tron": "TWsPDmEjt5axSgsLkTtKSfbPGH5i7jzaem"
}
}