Logo
Fireblocks API Documentation

Create an external wallet

POST {{baseUrl}}/external_wallets

Creates a new external wallet with the requested name.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Idempotency-Key
string A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Content-Type
string
Accept
string




RESPONSES

status OK

{ "id": "<string>", "name": "<string>", "assets": [ { "id": "<string>", "balance": "<string>", "lockedAmount": "<string>", "status": "FAILED", "address": "<string>", "tag": "<string>", "activationTime": "<string>" }, { "id": "<string>", "balance": "<string>", "lockedAmount": "<string>", "status": "REJECTED", "address": "<string>", "tag": "<string>", "activationTime": "<string>" } ], "customerRefId": "<string>" }



Curl
curl -X POST 'https://api.fireblocks.io/v1/external_wallets' -H 'Idempotency-Key: <string>' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"name":"\u003cstring\u003e","customerRefId":"\u003cstring\u003e"}'

ENDPOINTS