Skip to main content

Transfer an ERC20 token

POST 

https://api.fuse.io/api/v0/admin/tokens/transfer

Transfers an ERC20 token - The "from" address must be owned by project's backend account

Request

Query Parameters

    apiKey string

    (Required) You Public API key

    Example: {{publicKey}}

Header Parameters

    API-SECRET string

    (Required) You Secret API key

    Example: {{secretKey}}
    Accept string
    Example: application/json

Body

    tokenAddress string
    amount string
    from string
    to string

Responses

Created

Schema

    object

curl -L -X POST 'https://api.fuse.io/api/v0/admin/tokens/transfer' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"tokenAddress": "0xaf03155DF641f77917803C634E9e4d808ea42ae4",
"amount": "10",
"from": "0xBE06B7DF117dc1D6cD63aa133d6f4dfa614ed87C",
"to": "0x3720D50beba9FDcbAf393bd59Bed91bEdd430F9F"
}'
Request Collapse all
Base URL
https://api.fuse.io/api/v0
Parameters
— query
— header
— header
Body
{
  "tokenAddress": "0xaf03155DF641f77917803C634E9e4d808ea42ae4",
  "amount": "10",
  "from": "0xBE06B7DF117dc1D6cD63aa133d6f4dfa614ed87C",
  "to": "0x3720D50beba9FDcbAf393bd59Bed91bEdd430F9F"
}
ResponseClear

Click the Send API Request button above and see the response here!

Was this page helpful?