Wallet create
This call allows you to create a dedicated address for your account.
Note: Due to rare timeouts for larger numbers of requests, we strongly recommend a "retry logic" to be present
path Parameters
| id required | string <uuid> Account ID parameter added as part of the URL. |
Request Body schema: application/x-www-form-urlencoded
| asset required | string <uuid> This parameter indicates the unique code that identifies the asset. |
Responses
Response samples
- 200
Content type
application/json
{- "data": {
- "id": "b763a491-3ca3-4fe0-b14e-5c87f201967b",
- "asset": {
- "id": "c21f664c-d2a1-4b41-9564-25e3dcde497c",
- "name": "Litecoin Test",
- "symbol": "LTC_TEST",
- "displayName": "Litecoin Test",
- "displaySymbol": "LTC_TEST",
- "exchangeSymbol": "LTC",
- "type": "CRYPTO",
- "subType": "BASE_ASSET",
- "token": false,
- "contract": null,
- "nativeAsset": "LTC_TEST",
- "decimals": 8,
- "network": "LTC_TEST"
}, - "address": "tltc1qar05t4myq978esl36mv7ca3c6czmzq57azymkz",
- "createdAt": "2023-09-13T13:29:32+00:00",
- "qr": "ZGF0YTppbWFnZS9zdmcreG1sO2Jhc2U2NCxQRDk0Yld3Z2RtVnljMmx2YmowaU1TNHdJaUJsYm1OdlpHbHVaejBpVlZSR0xUZ2lQejRL"
}
}Wallet list
List of dedicated wallets attached to the account
path Parameters
| id required | string <uuid> Account ID parameter added as part of the URL. |
query Parameters
| withQr | boolean Boolean flag to indicate if you want a QR code details in the response. |
Responses
Response samples
- 200
Content type
application/json
{- "data": [
- {
- "id": "b763a491-3ca3-4fe0-b14e-5c87f201967b",
- "asset": {
- "id": "c21f664c-d2a1-4b41-9564-25e3dcde497c",
- "name": "Litecoin Test",
- "symbol": "LTC_TEST",
- "displayName": "Litecoin Test",
- "displaySymbol": "LTC_TEST",
- "exchangeSymbol": "LTC",
- "type": "CRYPTO",
- "subType": "BASE_ASSET",
- "token": false,
- "contract": null,
- "nativeAsset": "LTC_TEST",
- "decimals": 8,
- "network": "LTC_TEST"
}, - "address": "tltc1qar05t4myq978esl36mv7ca3c6czmzq57azymkz",
- "createdAt": "2023-09-13T13:29:32+00:00",
- "qr": "ZGF0YTppbWFnZS9zdmcreG1sO2Jhc2U2NCxQRDk0Yld3Z2RtVnljMmx2YmowaU1TNHdJaUJsYm1OdlpHbHVaejBpVlZSR0xUZ2lQejRL"
}
]
}Account balance list
List of account wallets balances
path Parameters
| id required | string <uuid> Account ID parameter added as part of the URL. |
Responses
Response samples
- 200
Content type
application/json
{- "data": [
- {
- "id": "3faafb38-619d-4cee-bc3c-0b5f3f1b4bd8",
- "wallet": {
- "id": "2750a4db-cbd6-49a7-9d90-a45ef15c7f49",
- "address": "0xFb847dd9dC091071865CdE66dA759dFe13eEBAB1",
- "createdAt": "2023-09-07T14:46:50+00:00"
}, - "asset": {
- "id": "8872273c-f1be-4d88-ae04-75faddbdeb5f",
- "name": "Ethereum Test (Goerli)",
- "symbol": "ETH_TEST3",
- "displayName": "Ethereum Test (Goerli)",
- "displaySymbol": "ETH_TEST3",
- "exchangeSymbol": "ETH",
- "type": "CRYPTO",
- "subType": "BASE_ASSET",
- "token": false,
- "contract": null,
- "nativeAsset": "ETH_TEST3",
- "decimals": 18,
- "network": "ETH_TEST3"
}, - "available": "0.010000000000000000",
- "deposit": "0.010000000000000000",
- "depositFee": "0.000000000000000000",
- "network": 120,
- "createdAt": "2023-09-29T04:59:29+00:00",
- "updatedAt": null,
- "availableEur": "4.58"
}
]
}