Wallet Import (POST)

Wallet Import

This API is used to import solana/evm wallets (please keep only a small amount of funds)

URL

Header: X-API-KEY

(Please do not disclose your API Key to anyone. If you are at risk of losing it, please refresh it.)

Notes

  1. X-API-KEY can be obtained in your "Dashboard", go to check: Dashboard

  2. In the paging type interface, use the next field in the return value as the query parameter for the next page (if next == null, it means that paging has ended)

Request Example

{
	"type": "solana",
	"privateKeys": [
		"vpGJnzjtVgYuatEc9tS6S93geWsRviKuDVsSKBmNHcKsyJkma9UGRpyb3kAQR7aiR3mg5itmbmcCqN7dgC5XHdJ",
		"4yQk3EFEoEc4iDRbZGxedTanpvK6TZubwnK9tL3LnSiDBHRgR5iP9iNVxowRwrDhZHY8pDQW5g6eLrLWWZHAA16H",
		"[83,214,120,30,133,170,241,71,229,58,11,13,214,119,79,11,113,60,106,249,186,176,13,248,215,248,33,211,101,17,166,164,38,254,136,103,98,127,230,66,77,215,1,10,152,238,241,199,32,189,226,227,75,146,195,252,158,32,123,55,173,73,172,244]"
	]
}

Request Response

{
	"err": false,
	"res": [
		{
			"id": "lwzrpe4g01uc90",
			"name": "wallet81_1",
			"type": "evm",
			"address": "0x5d7c53181D84cB2F8b5CB3858058036752be12f9"
		},
		{
			"id": "lwzrpe4h01udz6",
			"name": "wallet81_2",
			"type": "evm",
			"address": "0xf77CDBD6c1748b0ADE22fDFC3B65dDdFc00f0acf"
		}
	],
	"docs": "https://dbotx.com/docs"
}

Request Parameters

  • type: Wallet type (solana/evm)

  • privateKeys: Private key list, base58 private keys and arrays are supported for Solana

Last updated