Skip to main content
POST
/
api
/
v1
/
evm
/
send
/
native
Send native token to another address
curl --request POST \
  --url https://api.dev.monei.cc/api/v1/evm/send/native \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "to": "0xRecipientAddress",
  "amount": "0.01",
  "chainId": 1
}
'
{
  "statusCode": 123,
  "message": "<string>",
  "data": {
    "txHash": "<string>"
  },
  "errors": {}
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
to
string
required

Recipient address

Example:

"0xRecipientAddress"

amount
string
required

Amount of native token to send (e.g. ETH, BNB)

Example:

"0.01"

chainId
number
required

Chain ID (e.g. 1 for Ethereum, 56 for BSC)

Example:

1

Response

default - application/json
statusCode
number
required
message
string
required
data
object
required
errors
object
required