Tokenization: Understanding tokenized US Treasury bills

Read the guide

One API for

DeFi
Custody
Payments
On Ramps
Wallets
DeFi

One API for

DeFi
Custody
Payments
On Ramps
Wallets
DeFi

Embed popular financial features into your product with a single API integration.

Easily embed DeFi into your app

Combine and customize features from our platform to suit your business needs

A UI element showing a transfer between a fiat currency and Ethereum tokens

Global fiat on/off-ramps

Automatically convert local fiat into stablecoins pegged 1:1 to USD. Avoid having to send your users away from your app to on-ramp into your products.

Learn more

Crypto yield accounts

Launch an interest-bearing stablecoin account, yielding 3-6% APY.

Yield strategies are curated by Conduit to only include protocols evaluated for security, transparency, liquidity and APY.

Learn more
A UI element showing monthly earnings from a crypto yield account, expressed in USD
A UI element showing peer to peer payments between people in different countries and currencies.

Payments & transfers

Allow cheaper, faster remittances without holds.

Enable cross-border B2B payments across multiple fiat currencies.

Learn more

Powerful wallet services

Instantly create user accounts to let users hold value in multiple cryptocurrencies.

Easily allocate funds across integrated DeFi protocols, and track transactions in real time.

Learn more
A UI element showing the available balance of a digital wallet, with options to send, receive and earn yield.

Build products your users will love

Our end-to-end platform reduces development complexity, so you can focus on user experience

Supported countries

Made for developers, by developers

Kickstart your integration with code recipes and guides

Explore docs
Onboard Customers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "relationships": {

       "account-holders": {

         "data": [

           {"type": "string", "id": "id:ahl:3G6CSYgJpUJxQJifTfoFvJXNuJp"}

         ]

       }

     }

   }

 }'

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

{

   "data": {

     "relationships": "id:wlt:2MW2qbpfnXZoUDUd7L2v1UQJuyQ",

     "type": "wallet",

     "attributes": {

       "address": "wlt:eth:0x44a8938044c8f1a2cfd6ff7e66a46482377fa390",

       "assetType": "asset:eth:USDC",

       "networkId": "net:eth:ropsten",

       "function": "deposit",

     }

   }

 }

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

"data": {

     "relationships": "id:wlt:2MW2qbpfnXZoUDUd7L2v1UQJuyQ",

     "type": "wallet",

     "attributes": {

       "id": "id:allc:2G6BST3Q0age8uCpYN7vIloQyxT",

       "poolId": "id:pool:2G6BST3Q0age8uCpYN7vIloQyxT",

       "poolname": "string",

       "accountId": "id:acct:2G6BSYgJpUJxQJifCfoFvJXNuJp",

       "balances": {

        - "available": [

         - {

             "assetType": "asset:eth:USDC",

             "amount": "5000000000",

             }

          ],

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "attributes": {

       "source": {

         "assetType": "asset:eth:USDC",

         "amount": "5000000000"
       },
       "target": {
         "assetType": "asset:eth:USDC"

         ]

       }

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "attributes": {

       "assetType": "asset:eth:USDC",

       "source": "id:allc:2J8OkA50iEKCUdAP64xbgU14Irf",

       "destination": "id:allc:2JEnUNHhSRAcp9Gj1SQEtnPk5mB",

       }

     }

   }

Onboard Customers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "relationships": {

       "account-holders": {

         "data": [

           {"type": "string", "id": "id:ahl:3G6CSYgJpUJxQJifTfoFvJXNuJp"}

         ]

       }

     }

   }

 }'

Create Wallet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "relationships": {

       "account-holders": {

         "data": [

           {"type": "string", "id": "id:ahl:3G6CSYgJpUJxQJifTfoFvJXNuJp"}

         ]

       }

     }

   }

 }'

Check Balances
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "relationships": {

       "account-holders": {

         "data": [

           {"type": "string", "id": "id:ahl:3G6CSYgJpUJxQJifTfoFvJXNuJp"}

         ]

       }

     }

   }

 }'

Get Fiat On-Ramp Quote
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "relationships": {

       "account-holders": {

         "data": [

           {"type": "string", "id": "id:ahl:3G6CSYgJpUJxQJifTfoFvJXNuJp"}

         ]

       }

     }

   }

 }'

Get Fiat On-Ramp Quote
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

curl -i -X POST \

 https://sandbox.conduit.financial/accounts \

 -H 'Content-Type: application/vnd.api+json' \

 -H 'X-API-Key: YOUR_API_KEY_HERE' \

 -H 'X-API-Secret: YOUR_API_KEY_HERE' \

 -d '{

   "data": {

     "relationships": {

       "account-holders": {

         "data": [

           {"type": "string", "id": "id:ahl:3G6CSYgJpUJxQJifTfoFvJXNuJp"}

         ]

       }

     }

   }

 }'

Backed by top investors

Discovery VenturesGaingelsFinDiagramPortageGeminiInoviaGradient VenturesJump_Core Innovation Capital

Ready to get started?

Get your API keys and start building in our free sandbox environment

Start building