Api/KuCoinApi
// Set your API Keys 👇 here
$sdk = new \Tatum\Sdk();
// MainNet API Call
$sdk->mainnet()->api()->kuCoin();
// TestNet API Call
$sdk->testnet()->api()->kuCoin();
Methods
Method | Description |
---|---|
callKcsSmartContractMethod() | Invoke a method in a smart contract on KuCoin Community Chain |
callKcsSmartContractMethodKMS() | Invoke a method in a smart contract on KuCoin Community Chain |
callKcsSmartContractReadMethod() | Invoke a method in a smart contract on KuCoin Community Chain |
kcsBroadcast() | Broadcast signed Kcs transaction |
kcsGenerateAddress() | Generate Kcs account address from Extended public key |
kcsGenerateAddressPrivateKey() | Generate Kcs private key |
kcsGenerateWallet() | Generate Kcs wallet |
kcsGetBalance() | Get Kcs Account balance |
kcsGetBlock() | Get Kcs block by hash |
kcsGetCurrentBlock() | Get current block number |
kcsGetTransaction() | Get Kcs Transaction |
kcsGetTransactionCount() | Get count of outgoing Kcs transactions |
transferKcsBlockchain() | Send KCS from account to account |
transferKcsBlockchainKMS() | Send KCS from account to account |
callKcsSmartContractMethod()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/kcs/smartcontract
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->callKcsSmartContractMethod(
\Tatum\Model\CallKcsSmartContractMethod $call_kcs_smart_contract_method
): \Tatum\Model\CallSmartContractMethod200Response
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$call_kcs_smart_contract_method | \Tatum\Model\CallKcsSmartContractMethod |
Return type
\Tatum\Model\CallSmartContractMethod200Response
Description
Invoke a method in a smart contract on KuCoin Community Chain
callKcsSmartContractMethodKMS()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/kcs/smartcontract
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->callKcsSmartContractMethodKMS(
\Tatum\Model\CallKcsSmartContractMethodKMS $call_kcs_smart_contract_method_kms
): \Tatum\Model\CallSmartContractMethod200Response
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$call_kcs_smart_contract_method_kms | \Tatum\Model\CallKcsSmartContractMethodKMS |
Return type
\Tatum\Model\CallSmartContractMethod200Response
Description
Invoke a method in a smart contract on KuCoin Community Chain
callKcsSmartContractReadMethod()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/kcs/smartcontract
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->callKcsSmartContractReadMethod(
\Tatum\Model\CallKcsSmartContractReadMethod $call_kcs_smart_contract_read_method
): \Tatum\Model\CallSmartContractMethod200Response
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$call_kcs_smart_contract_read_method | \Tatum\Model\CallKcsSmartContractReadMethod |
Return type
\Tatum\Model\CallSmartContractMethod200Response
Description
Invoke a method in a smart contract on KuCoin Community Chain
2 credits per API call
Invoke a method in an existing smart contract on KuCoin Community Chain.
You can call a read-only or write method.
- For read-only methods, the output of the invoked method is returned.
- For write methods, the ID of the associated transaction is returned.
Troubleshooting a failed transaction Tatum ensures that this API works against the blockchain (accesses the blockchain, finds the specified smart contract, and executes the specified ABI method with the provided parameters). However, because this API can be run against any smart contract on the blockchain, Tatum cannot in any way guarantee that the method itself will be executed successfully.
If you have issues with invoking the method, refer to the user documentation for this method, or contact the author of the smart contract.
For more information about invoking methods in smart contracts, see this article on our Support Portal.
Signing a transaction When invoking a method in a smart contract, you are charged a fee for the transaction, and you must sign the transaction with the private key of the blockchain address from which the fee will be deducted.
Providing the private key in the API is not a secure way of signing transactions, because the private key can be stolen or exposed. Your private keys should never leave your security perimeter. You should use the private keys only for testing a solution you are building on the testnet of a blockchain.
For signing transactions on the mainnet, we strongly recommend that you use the Tatum Key Management System (KMS) and provide the signature ID instead of the private key in the API. Alternatively, you can use the Tatum JavaScript client.
kcsBroadcast()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/kcs/broadcast
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsBroadcast(
\Tatum\Model\BroadcastKMS $broadcast_kms
): \Tatum\Model\TransactionHash
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$broadcast_kms | \Tatum\Model\BroadcastKMS |
Return type
Description
Broadcast signed Kcs transaction
2 credits per API call
Broadcast signed transaction to Kcs blockchain. This method is used internally from Tatum KMS or Tatum client libraries. It is possible to create custom signing mechanism and use this method only for broadcasting data to the blockchain.
kcsGenerateAddress()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/kcs/address/{xpub}/{index}
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGenerateAddress(
string $xpub,
float $index
): \Tatum\Model\KcsGenerateAddress200Response
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$xpub | string | Extended public key of wallet. | |
$index | float | Derivation index of desired address to be generated. |
Return type
\Tatum\Model\KcsGenerateAddress200Response
Description
Generate Kcs account address from Extended public key
1 credit per API call
Generate Kcs account deposit address from Extended public key. Deposit address is generated for the specific index - each extended public key can generate up to 2^31 addresses starting from index 0 until 2^31.
kcsGenerateAddressPrivateKey()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/kcs/wallet/priv
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGenerateAddressPrivateKey(
\Tatum\Model\PrivKeyRequest $priv_key_request
): \Tatum\Model\PrivKey
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$priv_key_request | \Tatum\Model\PrivKeyRequest |
Return type
Description
Generate Kcs private key
1 credit per API call
Generate private key of address from mnemonic for given derivation path index. Private key is generated for the specific index - each mnemonic can generate up to 2^31 private keys starting from index 0 until 2^31.
kcsGenerateWallet()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/kcs/wallet
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGenerateWallet(
[ string $mnemonic ]
): \Tatum\Model\Wallet
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$mnemonic | string | Mnemonic to use for generation of extended public and private keys. | [optional] |
Return type
Description
Generate Kcs wallet
1 credit per API call
Tatum supports BIP44 HD wallets. It is very convenient and secure, since it can generate 2^31 addresses from 1 mnemonic phrase. Mnemonic phrase consists of 24 special words in 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 Kcs wallet with derivation path m’/44’/966’/0’/0. More about BIP44 HD wallets can be found here - https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki. Generate BIP44 compatible Kcs wallet.
kcsGetBalance()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/kcs/account/balance/{address}
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGetBalance(
string $address
): \Tatum\Model\KcsGetBalance200Response
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$address | string | Account address you want to get balance of |
Return type
\Tatum\Model\KcsGetBalance200Response
Description
Get Kcs Account balance
1 credit per API call
Get Kcs account balance in KCS. This method does not prints any balance of the ERC20 or ERC721 tokens on the account.
kcsGetBlock()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/kcs/block/{hash}
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGetBlock(
string $hash
): \Tatum\Model\EthBlock
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$hash | string | Block hash or block number |
Return type
Description
Get Kcs block by hash
1 credit per API call
Get Kcs block by block hash or block number.
kcsGetCurrentBlock()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/kcs/block/current
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGetCurrentBlock(): float
Parameters
This endpoint does not need any parameter.
Return type
float
Description
Get current block number
1 credit per API call
Get Kcs current block number. This is the number of the latest block in the blockchain.
kcsGetTransaction()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/kcs/transaction/{hash}
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGetTransaction(
string $hash
): \Tatum\Model\KcsTx
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$hash | string | Transaction hash |
Return type
Description
Get Kcs Transaction
2 credits per API call
Get Kcs transaction by transaction hash.
kcsGetTransactionCount()
Example
#️⃣ Execute command in terminal
Request
GET
/v3/kcs/transaction/count/{address}
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->kcsGetTransactionCount(
string $address
): float
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$address | string | address |
Return type
float
Description
Get count of outgoing Kcs transactions
1 credit per API call
Get a number of outgoing Kcs transactions for the address. When a transaction is sent, there can be multiple outgoing transactions, which are not yet processed by the blockchain. To distinguish between them, there is a counter called a nonce, which represents the order of the transaction in the list of outgoing transactions.
transferKcsBlockchain()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/kcs/transaction
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->transferKcsBlockchain(
\Tatum\Model\TransferKcsBlockchain $transfer_kcs_blockchain
): \Tatum\Model\TransactionSigned
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$transfer_kcs_blockchain | \Tatum\Model\TransferKcsBlockchain |
Return type
\Tatum\Model\TransactionSigned
Description
Send KCS from account to account
2 credits per API call
Send KCS from account to account.
Signing a transaction
When sending KCS, you are charged a fee for the transaction, and you must sign the transaction with the private key of the blockchain address from which the fee will be deducted.
Providing the private key in the API is not a secure way of signing transactions, because the private key can be stolen or exposed. Your private keys should never leave your security perimeter. You should use the private keys only for testing a solution you are building on the testnet of a blockchain.
For signing transactions on the mainnet, we strongly recommend that you use the Tatum Key Management System (KMS) and provide the signature ID instead of the private key in the API. Alternatively, you can use the Tatum JavaScript client.
Alternatively, using the Tatum client library for supported languages.
transferKcsBlockchainKMS()
Example
#️⃣ Execute command in terminal
Request
POST
/v3/kcs/transaction
Type signature
(new \Tatum\Sdk())->{mainnet/testnet}()->api()->kuCoin()->transferKcsBlockchainKMS(
\Tatum\Model\TransferKcsBlockchainKMS $transfer_kcs_blockchain_kms
): \Tatum\Model\TransactionSigned
Parameters
Name | Type | Description | Notes |
---|---|---|---|
$transfer_kcs_blockchain_kms | \Tatum\Model\TransferKcsBlockchainKMS |
Return type
\Tatum\Model\TransactionSigned
Description
Send KCS from account to account