Digital Asset

Working with the Digital Assets API is straightforward: define who you’re transacting with, set up the destination, then initiate the payout. Each stage builds on the last, so you can move from preparation to execution quickly and confidently, turning fiat into digital asset and delivering value on-chain with a smooth, reliable flow.

Digital Asset On-ramp Payout User Flow

%%{init: {
  "theme": "base",
  "themeVariables": {
    "primaryColor": "#CEE5DF",
    "primaryTextColor": "#153D49",
    "primaryBorderColor": "#008C6E",
    "lineColor": "#008C6E",
    "textColor": "#153D49",
    "noteBkgColor": "#CEE5DF",
    "noteTextColor": "#153D49"
  }
}}%%
sequenceDiagram
  autonumber
  participant Client as Client
  participant BC as BC Digital Assets API

  Note over Client,BC: 1) Create Profile
  Client->>BC: POST /api/v1/digital-assets/profiles
  BC-->>Client: profileId (returned)

  Note over Client,BC: 2) Whitelist Address
  Client->>BC: POST /api/v1/digital-assets/blockchain-whitelisting/addresses
  BC-->>Client: addressId (returned)

  Note over Client,BC: 3) Create Payout
  Client->>BC: POST /api/v1/digital-assets/payouts
  BC-->>Client: payoutId (returned)


Did this page help you?