---
title: "Send Celo / ERC20 from account to account"
method: POST
path: "/v3/celo/transaction"
tags: ["Celo - Tatum API"]
---

# Send Celo / ERC20 from account to account

`POST /v3/celo/transaction`

/v3/celo/transaction

**2 credits per API call**

Send Celo, cUSD or Tatum supported ERC20 token from account to account.  
  

**Signing a transaction**

When sending CELO, 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)](https://github.com/tatumio/tatum-kms) and provide the signature ID instead of the private key in the API. Alternatively, you can use the [Tatum JavaScript client](https://github.com/tatumio/tatum-js/tree/v2).

## Request body

- union
  - TransferCeloBlockchain
    - `data` string — Additional data that can be passed to a blockchain transaction as a data property; must be in the hexadecimal format
    - `nonce` number — Nonce to be set to Celo transaction. If not present, last known nonce will be used.
    - `to` string, required — Blockchain address to send assets
    - `currency` 'CELO' | 'CUSD' | 'CEUR', required — Currency of the transaction.
    - `feeCurrency` 'CELO' | 'CUSD' | 'CEUR', required — Currency to pay for transaction gas
    - `fee` CustomFee — The custom defined fee; if not present, will be calculated automatically
      - `gasPrice` string, required — The price for one gas unit (in Gwei)
      - `gasLimit` string, required — The maximum number of gas units that you are willing to spend on processing the transaction at the provided gas price
    - `amount` string, required — Amount to be sent.
    - `fromPrivateKey` string, required — Private key of sender address. Private key, or signature Id must be present.
  - TransferCeloBlockchainKMS
    - `data` string — Additional data that can be passed to a blockchain transaction as a data property; must be in the hexadecimal format
    - `nonce` number — Nonce to be set to Celo transaction. If not present, last known nonce will be used.
    - `currency` 'CELO' | 'CUSD' | 'CEUR', required — Currency of the transaction.
    - `fee` CustomFee — The custom defined fee; if not present, will be calculated automatically
      - `gasPrice` string, required — The price for one gas unit (in Gwei)
      - `gasLimit` string, required — The maximum number of gas units that you are willing to spend on processing the transaction at the provided gas price
    - `to` string, required — Blockchain address to send assets
    - `feeCurrency` 'CELO' | 'CUSD' | 'CEUR', required — Currency to pay for transaction gas
    - `amount` string, required — Amount to be sent.
    - `index` number — If signatureId is mnemonic-based, this is the index to the specific address from that mnemonic.
    - `signatureId` string, uuid, required — Identifier of the private key associated in signing application. Private key, or signature Id must be present.

## Response `200`

OK

- union
  - TransactionHash
    - `txId` string, required — The hash (ID) of the transaction
  - SignatureId
    - `signatureId` string, uuid, required — The internal Tatum ID of the prepared transaction for Key Management Sysytem (KMS) to sign<br/>This is different from the <code>signatureId</code> parameter that you provided in the request body. The <code>signatureId</code> parameter in the request body specifies the signature ID associated with the private key in KMS.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized. Not valid or inactive subscription key present in the HTTP Header.
- `403` — Forbidden. The request is authenticated, but it is not possible to required perform operation due to logical error or invalid permissions.
- `500` — Internal server error. There was an error on the server during the processing of the request.

---

[API](https://skmtc.net/tatum/apis/blockchain-data.md) · [All operations](https://skmtc.net/tatum/apis/blockchain-data/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tatum/blockchain-data/versions/8622ee4b8fae/schema)
