v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Customers

Create Customer Wallets

Provisions one or more crypto wallets for a customer across supported chains and tokens.

post/v2/customers/{customer_id}/wallets

Path parameters

customer_idstring required

Request body

Example request

{
  "wallets": [
    {
      "rail": "SOLANA",
      "currency": [
        "USDC"
      ]
    }
  ]
}

Response

Wallet creation request accepted for processing. Note the nested data: the outer envelope wraps a message plus the inner data array of wallets being provisioned.

Example response

{
  "data": {
    "message": "Request is being processed",
    "data": [
      {
        "id": "27dbc0f2-e5ae-444b-b4ab-0764252aedf6",
        "status": "ACTIVE",
        "currency": "USDC",
        "rail": "ETHEREUM",
        "address": "0xc42a5f7083c7e8f1d9820c7660867277289cd998",
        "balance": 10.000001
      }
    ]
  }
}