DEPOSITS Endpoints
Authorizations
Path parameters
referenceIdstringRequired
Responses
200Success
application/json
Responseone of
or
401Error
application/json
404Error
application/json
500Error
application/json
504Error
application/json
get
GET /referenceId/{referenceId} HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"list": [
{
"currency": "BTC",
"address": "bc1q42lja79elem0anu8q8s3h2n687re9jax556pcc",
"legacyAddress": "15e15hWo6CShMgbAfo8c2Ykj4C6BLq6Not"
}
]
}
Authorizations
Body
currencystring · enumRequiredPossible values:
The name of currency to be deposited
referenceIdstringOptional
The external identifier of the transaction
Responses
200Success
application/json
401Error
application/json
500Error
application/json
504Error
application/json
post
POST /addresses HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 39
"currency='BTC'&referenceId='text'"
{
"currency": "BTC",
"address": "bc1q42lja79elem0anu8q8s3h2n687re9jax556pcc",
"legacyAddress": "15e15hWo6CShMgbAfo8c2Ykj4C6BLq6Not"
}
Authorizations
Body
currencystring · enumRequiredPossible values:
The name of currency to be deposited
exchangeTostring · enumRequiredPossible values:
The exchange currency name
referenceIdstringOptional
The external identifier of the transaction
Responses
200Success
application/json
401Error
application/json
500Error
application/json
504Error
application/json
post
POST /incomings HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 58
"currency='BTC'&exchangeTo='EUR'&referenceId='text'"
{
"pair": "BTC:EUR",
"address": "bc1q42lja79elem0anu8q8s3h2n687re9jax556pcc",
"legacyAddress": "15e15hWo6CShMgbAfo8c2Ykj4C6BLq6Not"
}
Last updated