DFX is a crypto on- and off-ramp with an open API that can be integrated by anyone. This page explains the basic concepts of the API. If you don't want to bother with API calls, you can integrate our ready-to-use web widget with a few lines of code (see the services repository) or use our React API npm package.
Each user who wants to use the service must be registered separately with their blockchain address and a signature to prove ownership.
Contact support to register your wallet name. This is used to identify all users that signed up with your wallet. This step is optional.
- Get the sign message from sign-message endpoint (with the user's address) and sign it with the corresponding private key
- Sign the user up or in with the auth endpoint. This call will register a new user, if the user does not exist yet. If there is already a user with the same address, the user will be signed in. The response contains a JWT access token, which can be used for further API calls.
usedRef
,wallet
anddiscountCode
parameters are optional.usedRef
andwallet
are only taken into account on user registration.- Use the wallet name (
wallet
) from step initial setup - See below for more information on the referral program (
usedRef
)
- Use the wallet name (
Alternatively the sign-up and sign-in endpoints can be used if only one functionality (sign-up or sign-in) is required.
If a user wants to get notified about ongoing transactions, he can register his email address with the user endpoint
- Basic information about the referral program can be found in our FAQ
- A referral code can only be set once during user registration (
usedRef
parameter) - Every user will receive his own referral code after the first successful transaction. It can be got from the user endpoint.
- Details about the referred users can be got from the ref endpoint.
KYC is not required for a daily transaction volume up to 1000 CHF. To increase the transaction volume, the user needs to be verified with a KYC process, which can be done on the DFX KYC page. Just open then link to the KYC page with the user's API access token: https://services.dfx.swiss/kyc?session=<jwt-access-token>
The current KYC level of a user can be read using the user endpoint. The different levels are listed below.
- Level 10: Contact data recorded (mail)
- Level 20: Personal data recorded (account type, name, address, phone number)
- Level 30: Successful identification with ID or passport
- Level 40: Financial background queried (income, assets, business activity)
- Level 50: Risk analysis carried out (start of the business relationship between DFX and the user)
Get a quote
- Get all available assets with the asset endpoint
- This endpoint will return all assets compatible with the user's address, which might be assets on multiple blockchains. The query parameter (optional) can be used to filter for specific blockchains.
- Only assets with the
buyable
field set totrue
can be bought
- Get all available currencies with the fiat endpoint
- Only fiats with the
sellable
field set totrue
can be used to buy crypto
- Only fiats with the
- Get a quote with the buy quote endpoint
Get payment infos
- Get all available assets with the asset endpoint
- This endpoint will return all assets compatible with the user's address, which might be assets on multiple blockchains. The query parameter (optional) can be used to filter for specific blockchains.
- Only assets with the
buyable
field set totrue
can be bought
- Get all available currencies with the fiat endpoint
- Only fiats with the
sellable
field set totrue
can be used to buy crypto
- Only fiats with the
- Get the payment information with the buy payment endpoint
- Do a bank transfer with the provided payment infos
- Ensure compliance with minimum deposit and KYC limits
- The crypto asset will be sent to the user's blockchain address as soon as the bank transfer is completed
Get a quote
- Get all available assets with the asset endpoint
- Only assets with the
sellable
field set totrue
can be sold
- Only assets with the
- Get all available currencies with the fiat endpoint
- Only fiats with the
buyable
field set totrue
can be used to sell crypto
- Only fiats with the
- Get a quote with the sell quote endpoint
Get payment infos
In order to perform bank transactions, DFX needs to know the name and address of the recipient (KYC level ≥ 20). Therefore, user data must be collected once before a sale can be made. The user data can be updated with the kyc data endpoint. Required fields are accountType, mail, phone, firstname, lastName, address (street, city, zip, country)
. For non personal accounts, organizationName, organizationAddress (street, city, zip, country)
are also required.
- Update user data, if required (check with
kyc.dataComplete
field from user endpoint) - Get all available assets with the asset endpoint
- Only assets with the
sellable
field set totrue
can be sold
- Only assets with the
- Get all available currencies with the fiat endpoint
- Only fiats with the
buyable
field set totrue
can be used to sell crypto
- Only fiats with the
- Get the payment information with the sell payment endpoint
- Do a blockchain transaction to the provided deposit address
- Ensure compliance with minimum deposit and KYC limits
- The fiat will be sent to the specified bank account as soon as the blockchain transaction is completed
- All bank accounts of a user can be fetched with the bank account endpoint
- A call to the buy or sell payment info endpoints will automatically create a bank account for the provided IBAN
- This can be used to improve UX and show the previously used IBANs to the user
- Bank accounts (label, preferred currency) can be updated with the update endpoint
- Bank accounts can be created directly with the create endpoint
- DFX.swiss is integrated in the DFX.swiss Services