v11

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-017364211.0 KB
Wallets

Create Wallet

Creates a new wallet provider that can be used for disbursements. The wallet must be configured with supported assets and proper authentication domains.

post/wallets

Request body

namestring required

Human-readable name of the wallet provider

homepagestring required

Homepage URL of the wallet provider

deep_link_schemastring required

Deep link schema for the wallet application

sep_10_client_domainstring required

SEP-10 client domain for authentication

enabledboolean

Whether the wallet is enabled for use

assets_idsstring[]

Legacy: Array of asset IDs (cannot be used with assets field)

Response

Wallet created successfully

idstring
namestring
homepagestring
sep_10_client_domainstring
deep_link_schemastring
created_atstring date-time
updated_atstring date-time

Example response

{
  "id": "5ada9ed5-455a-4782-a0ee-160767e0deb1",
  "name": "Vibrant Assist",
  "homepage": "https://vibrantapp.com",
  "sep_10_client_domain": "api-dev.vibrantapp.com",
  "deep_link_schema": "https://vibrantapp.com/sdp-dev",
  "created_at": "2023-07-31T20:50:45.648Z",
  "updated_at": "2023-07-31T20:50:45.648Z"
}