Logo
Fireblocks API Documentation

Bulk creation of wallets

POST {{baseUrl}}/vault/assets/bulk

Create multiple wallets for a given vault account by running an async job.
Note: - These endpoints are currently in beta and might be subject to changes. - We limit accounts to 10k per operation and 200k per customer during beta testing. - Currently, we are only supporting EVM wallets.

 

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

{ "jobId": "<string>" }



Curl
curl -X POST 'https://api.fireblocks.io/v1/vault/assets/bulk' -H 'Idempotency-Key: <string>' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"assetId":"\u003cstring\u003e","vaultAccountIdFrom":"\u003cstring\u003e","vaultAccountIdTo":"\u003cstring\u003e"}'

ENDPOINTS