v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Cardano - Tatum API

Generate Ada wallet

/v3/ada/wallet

You can work with Cardano by connecting directly to a blockchain node provided by Tatum.

1 credit per API call.

Tatum supports BIP44 HD wallets. Because they can generate 2^31 addresses from 1 mnemonic phrase, they are very convenient and secure. A mnemonic phrase consists of 24 special words in a defined order and can restore access to all generated addresses and private keys.
Each address is identified by 3 main values:

  • Private Key - your secret value, which should never be revealed
  • Public Key - public address to be published
  • Derivation index - index of generated address

Tatum follows BIP44 specification and generates for ADA wallet with derivation path m/1852'/1815'/0'. More about BIP44 HD wallets can be found here - https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki. Generate BIP44 compatible Ada wallet.

get/v3/ada/wallet

Query parameters

mnemonicstring

Mnemonic to use for generation of extended public and private keys.

Response

OK

mnemonicstring required

Generated mnemonic for wallet.

xpubstring required

Generated Extended public key for wallet with derivation path according to BIP44. This key can be used to generate addresses.

Example response

{
  "mnemonic": "urge pulp usage sister evidence arrest palm math please chief egg abuse",
  "xpub": "xpub6EsCk1uU6cJzqvP9CdsTiJwT2rF748YkPnhv5Qo8q44DG7nn2vbyt48YRsNSUYS44jFCW9gwvD9kLQu9AuqXpTpM1c5hgg9PsuBLdeNncid"
}