Wallet API Docs

Wallet API is the gateway for external dApps, allowing secure communication and actions on SafeQeep
API Endpoint
https://safeqeep.com/api.php
Headers
Accept: application/json
Content-Type: application/json
Safeqeep-Api-Key: your-api-key
UI Sample Code
Get your API Key
Request a new API with usecase

Connected Wallet

Request Method
POST
Parameters
						{
						"info": true
						}
					
Success Response
						{
						"status": "success",
						"chainId": "xxx",
						"public": "xxx"
						}
					

Token Balances

Request Method
POST
Parameters
						{
						"tokenBalances": true
						}
					
Success Response
						{
						"status": "success",
						"chainId": "xxx",
						"public": "xxx",
						"tokenBalances": [
						{
						"address": "xxx",
						"name": "xxx",
						"symbol": "xxx",
						"decimals": 0,
						"balance": "xxx"
						}
						]
						}
					

Failed Response

						{
						"status": "failed",
						"message": "xxx"
						}