New Year, New Friends! Refer your friends & Earn $100k!

Making DeFi accessible with REST API

Securo is

DeFi Infra-Middleware

Securo enables developers, traders, crypto startups, fintech & tradFi to build, invest and manage DeFi products with simplicity and dev-friendly tools.

How Securo works

Simple & Accessible

Connect to Web3 easily

Powerful All-in-one API solution to integrate decentralized technologies into your apps, backends, and products.
var axios = require('axios');
var data = JSON.stringify({
    "tokenIn": "WBTC", 
    "tokenOut": "USDC", 
    "amount": "1", 
    "chain":"ethereum", 
    "isNative": false, 
    "slippagePercentage": "5", 
    "exactIn": true, 
    "userEmail": "YOUR_SECURO_USER_EMAIL_ADDRESS",
    "successURL": "https://google.com",
    "cancelURL": "https://google.com"
});
var config = {
  method: 'post',
  url: 'https://api.securo.dev/api/v1/sessions/swap',
  headers: { 
    'x-sec-key': 'YOUR_API_KEY', 
    'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS', 
    'x-sec-sign': 'YOUR_SECRET_KEY', 
    'Content-Type': 'application/json'
  },
  data
};
axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error.response.data);
});
var axios = require('axios');
var data = JSON.stringify({
  "product": "LCI", // 'LCI', 'MWI'
  "type": "deposit", // 'deposit', 'withdraw', 
  "amount": 1, // Transaction Amount
  "userEmail": "YOUR_SECURO_USER_EMAIL_ADDRESS"
});
var config = {
  method: 'post',
  url: 'https://api.securo.dev/api/v1/sessions', 
  headers: { 
    'x-sec-key': 'YOUR_API_KEY', 
    'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS', 
    'x-sec-sign': 'YOUR_SECRET_KEY', 
    'Content-Type': 'application/json'
  },
  data : data
};
axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});
var axios = require('axios');
var data = JSON.stringify({
    "network": "ethereum",
    "walletAddress": "YOUR_WALLET_ADDRESS",
    "emailAddress": "YOUR_SECURO_EMAIL_ADDRESS",
    "trxType": "Buy",
    "fiatCurrency": "USD",
    "fiatAmount": 141,
    "cryptoCurrency": "USDT",
    "redirectURL": "https://www.google.com",
    "isDisableCrypto": false,
    "cancellationUrl": "https://www.twitter.com",
    "paymentMethod": "credit_debit_card"
});
var config = {
  method: 'post',
  url: 'https://api.securo.dev/api/v1/payment',
  headers: { 
    'x-sec-key': 'YOUR_API_KEY', 
    'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS', 
    'x-sec-sign': 'YOUR_SECRET_KEY', 
    'Content-Type': 'application/json'
  },
  data
};
axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error.response.data);
});

Token Swap

Swap tokens between many blockchain networks in your applications in a matter of minutes - even gasless.

Powered by

var axios = require('axios');
var data = JSON.stringify({
    "tokenIn": "WBTC", 
    "tokenOut": "USDC", 
    "amount": "1", 
    "chain":"ethereum", 
    "isNative": false, 
    "slippagePercentage": "5", 
    "exactIn": true, 
    "userEmail": "YOUR_SECURO_USER_EMAIL_ADDRESS",
    "successURL": "https://google.com",
    "cancelURL": "https://google.com"
});
var config = {
  method: 'post',
  url: 'https://api.securo.dev/api/v1/sessions/swap',
  headers: { 
    'x-sec-key': 'YOUR_API_KEY', 
    'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS', 
    'x-sec-sign': 'YOUR_SECRET_KEY', 
    'Content-Type': 'application/json'
  },
  data
};
axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error.response.data);
});

Index Funds

Deploy capital into DeFi liquidity pools and index funds directly from your applications with simpler integrations.

var axios = require('axios');
var data = JSON.stringify({
  "product": "LCI", // 'LCI', 'MWI'
  "type": "deposit", // 'deposit', 'withdraw', 
  "amount": 1, // Transaction Amount
  "userEmail": "YOUR_SECURO_USER_EMAIL_ADDRESS"
});
var config = {
  method: 'post',
  url: 'https://api.securo.dev/api/v1/sessions', 
  headers: { 
    'x-sec-key': 'YOUR_API_KEY', 
    'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS', 
    'x-sec-sign': 'YOUR_SECRET_KEY', 
    'Content-Type': 'application/json'
  },
  data : data
};
axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});

Fiat-to-crypto (on-ramp)

Provide a fiat-to-crypto service for users to buy crypto assets with fiat currency and invest into DeFi right in your application.

Powered by

var axios = require('axios');
var data = JSON.stringify({
    "network": "ethereum",
    "walletAddress": "YOUR_WALLET_ADDRESS",
    "emailAddress": "YOUR_SECURO_EMAIL_ADDRESS",
    "trxType": "Buy",
    "fiatCurrency": "USD",
    "fiatAmount": 141,
    "cryptoCurrency": "USDT",
    "redirectURL": "https://www.google.com",
    "isDisableCrypto": false,
    "cancellationUrl": "https://www.twitter.com",
    "paymentMethod": "credit_debit_card"
});
var config = {
  method: 'post',
  url: 'https://api.securo.dev/api/v1/payment',
  headers: { 
    'x-sec-key': 'YOUR_API_KEY', 
    'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS', 
    'x-sec-sign': 'YOUR_SECRET_KEY', 
    'Content-Type': 'application/json'
  },
  data
};
axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error.response.data);
});

Ecosystem

What Others Say

The team is creating a product that is much needed - bringing crypto adoption to the masses.
Danish Chaudhry
CEO at Bitcoin.com
Securo makes it easy for me. It reduces friction and
increases returns.
Aaron Choi
VP at Kava
Making it easier for the devs to easily build and scale, Securo is solving the biggest problem in DeFi today!
Yeshu Agarwal
Co-Founder & CTO at Transak

Ready to start building on DeFi?

Get access to the best-in-class API to unlock
the possibilities of web3 finance.