www.modulrfinance.com Open in urlscan Pro
2606:2c40::c73c:6702  Public Scan

URL: https://www.modulrfinance.com/
Submission: On September 15 via manual from IL — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

By using our site you agree to our use of cookies to provide the best
experience. To find out more about the cookies we use, see our Privacy Policy.

Accept Decline

PRODUCT

 * UK Payments
 * EU Payments
 * Cards
 * Open Banking
 * Account Services

SOLUTIONS

FINANCIAL SERVICES

Alternative Banking Banking & Building Societies Crypto & Web3 Lending Merchant
Payment Services Trading & Investments

TRAVEL



ACCOUNTANCY & PAYROLL

AP & AR Automation Platform Accounting & ERP Software Payroll & HRM Software
Recruitment & Umbrella Companies Wage Advance Accountants & Payroll Bureaus
Business Payroll & Invoice Payments

MORE

Marketplaces Others

PARTNER PROGRAMMES

AP & AR Automation Platform Accounting & ERP Software Payroll & HRM Software
Recruitment & Umbrella Companies Wage Advance Accountants & Payroll Bureaus
Business Payroll & Invoice Payments

SMALL BUSINESS



DEVELOPERS

 * API
 * Sandbox
 * Documentation
 * 

RESOURCES

 * Support
 * Case Studies
 * Guides
 * Blog

COMPANY

 * Our Mission
 * Our Team
 * Newsroom
 * Join our team

Sign in Contact us
 * 
 * 
   English
   * 
     French
   * 
     Spanish

 * Product
   * 
     UK Payment
   * 
     EU Payment
   * 
     Cards
   * 
     Open Banking
   * 
     Account Services
 * Solutions
   
   Financial Services
   
   Travel
   
   Accountancy & Payroll
   
   More
   
   --------------------------------------------------------------------------------
   
   
   Partner Programmes
   
   Small Business
   Alternative Banking Banking & Building Societies Crypto & Web3 Lending
   Merchant Payment Services Trading & Investments
   Online Travel Agent Tech Partners Others
   AP & AR Automation Platform Accounting & ERP Software Payroll & HRM Software
   Recruitment & Umbrella Companies Wage Advance Accountants & Payroll Bureaus
   Business Payroll & Invoice Payments
   Marketplaces Others
   Business Payroll & Invoice Payments
 * Developers
   * 
     API
   * 
     Sandbox
   * 
     Documentation
 * Resources
   * 
     Support
   * 
     Case Studies
   * 
     Guides
   * 
     Blog
 * Company
   * 
     Our Mission
   * 
     Our Team
   * 
     Newsroom
   * 
     Careers

Sign in Contact us


EMBEDDED PAYMENTS FOR EVERY BUSINESS

Set yourself apart with Embedded Payments – payment and account functionality
integrated directly into your business. Move money in and out with a single set
of flexible and scalable APIs.

Find Out More → Contact sales →


We help your business


DELIGHT CUSTOMERS.
CREATE EFFICIENCIES.
BUILD SUPERIOR EXPERIENCES.

Establish new opportunities, simplify operations, and empower your teams.
Whether you’re looking to scale or make marginal benefits, our breadth of
payment capabilities means we have a solution for your business.

Sandbox → Contact sales →


Modulr for every industry
Powerful payment solutions for each sector, including accounting, travel, and
financial services.
Trusted market leading compliance
Directly regulated by both the Financial Conduct Authority and De Nederlandsche
Bank, so you can grow your business in safe hands.
Automate payments in your software
Automate ‘if this, then that’ rules for the ultimate in efficiency and customer
experience.
Leverage Open Banking
Access Open Banking technology to protect your business from fraud and create
exceptional user experiences for your customers.
Generate your own cards
Design and issue your own physical and virtual cards, promoting your brand and
offering greater flexibility to your teams and customers.
Instant customer notifications
Use our webhooks to get and provide live updates on customer and business
payments, so everyone knows where their money is at any time.


Maximise your growth


PARTNER WITH MODULR

We partner with you to bring Embedded Payments to your customers, whether
through your existing software, or by enabling new products and services.


One partner for all your payment needs
Create real efficiency and scale easily by removing the need to work with
multiple providers.
Make payments your competitive advantage
Easily integrate and monetise payments within your propositions to take
advantage of new market opportunities and revenue streams.
Partnerships built for you
Add Modulr directly to your platform, refer and revenue share, or even white
label - we have an array of options for your business and customers.
Solutions for every company

We have a suite of options to get you moving quickly. Choose what works for you
and build your platform in a modular way.

Tell us about your project →

0
%
Platform uptime
>
0
API requests per second
0
ms
Average API response time
>£
0
bn
Annualised payment volume
Engineered for developers


BUILD MODULR INTO YOUR TECH STACK WITH OUR EASY-TO-USE APIS

“Easy to implement with very clearly defined APIs and has proven to be highly
reliable and responsive.”
Chris Lowrie, Chief Operating Officer, HyperJar.
Copy code →
Copied
   

 *  * curl --request POST \
      --url https://api-sandbox.modulrfinance.com/api-sandbox-token/payments \
      --header 'accept: application/json' \
      --header 'authorization: <API KEY>' \
      --header 'content-type: application/json;charset=UTF-8' \
      --data '{"amount":10,"destination":{"accountNumber":"12445678","name":"My
      beneficiary","sortCode":"000000","type":"SCAN"},"reference":"My
      payment","sourceAccountId":"<YOUR ACCOUNT ID>"}'
   
    * var request = require("request");
      
      var options = {
        method: 'POST',
        url: 'https://api-sandbox.modulrfinance.com/api-sandbox-token/payments',
        headers: {
          accept: 'application/json',
          'content-type': 'application/json;charset=UTF-8',
          authorization: '<API KEY>'
        },
        body: '{"amount":10,"destination":{"accountNumber":"12445678","name":"My
      beneficiary","sortCode":"000000","type":"SCAN"},"reference":"My
      payment","sourceAccountId":"<YOUR ACCOUNT ID>"}'
      };
      
      request(options, function (error, response, body) {
        if (error) throw new Error(error);
        console.log(body);
      });
   
    * import requests
      
      url = "https://api-sandbox.modulrfinance.com/api-sandbox-token/payments"
      
      payload =
      "{\"amount\":10,\"destination\":{\"accountNumber\":\"12445678\",\"name\":\"My
      beneficiary\",\"sortCode\":\"000000\",\"type\":\"SCAN\"},\"reference\":\"My
      payment\",\"sourceAccountId\":\"<YOUR ACCOUNT ID>\"}"
      headers = {
        'accept': "application/json",
        'content-type': "application/json;charset=UTF-8",
        'authorization': "<API KEY>"
      }
      
      response = requests.request("POST", url, data=payload, headers=headers)
      
      print(response.text)

   

 *  * curl --request POST \
      --url
      https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1223454/cards
      \
      --header 'accept: application/json;charset=UTF-8' \
      --header 'authorization: <API_KEY>' \
      --header 'content-type: application/json;charset=UTF-8' \
      --data '{"expiry":"2021-01-02","externalRef":"External
      reference","holder":{"firstName":"John","lastName":"Smith","title":"Mr"},"limit":34,"productCode":"01112345"}'
   
    * var request = require("request");
      
      var options = {
        method: 'POST',
        url:
      'https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1223454/cards',
        headers: {
          accept: 'application/json;charset=UTF-8',
          'content-type': 'application/json;charset=UTF-8',
          authorization: '<API_KEY>'
        },
        body: '{"expiry":"2021-01-02","externalRef":"External
      reference","holder":{"firstName":"John","lastName":"Smith","title":"Mr"},"limit":34,"productCode":"01112345"}'
      };
      
      request(options, function (error, response, body) {
        if (error) throw new Error(error);
        console.log(body);
      });
   
    * import requests
      
      url =
      "https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1223454/cards"
      
      payload = "{\"expiry\":\"2021-01-02\",\"externalRef\":\"External
      reference\",\"holder\":{\"firstName\":\"John\",\"lastName\":\"Smith\",\"title\":\"Mr\"},\"limit\":34,\"productCode\":\"01112345\"}"
      headers = {
       'accept': "application/json;charset=UTF-8",
       'content-type': "application/json;charset=UTF-8",
       'authorization': "<API_KEY>"
      } response = requests.request("POST", url, data=payload, headers=headers)
      print(response.text)

   

 *  * curl --request GET \
      --url
      https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1234322
      \
      --header 'accept: application/json' \
      --header 'authorization: <API_KEY>'
      
   
    * var request = require("request");
      
      var options = {
        method: 'GET',
        url:
      'https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1234322',
        headers: {
          accept: 'application/json',
          authorization: '<API_KEY>'
        }
      };
      
      request(options, function (error, response, body) {
        if (error) throw new Error(error);
      
        console.log(body);
      });
   
    * import requests
      
      url =
      "https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1234322"
      
      headers = {
        'accept': "application/json",
        'authorization': "<API_KEY>"
      }
      
      response = requests.request("GET", url, headers=headers)
      
      print(response.text)

   

 *  * curl --request GET \
      --url
      'https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1234567/transactions?page=0&size=20&q=ABC&minAmount=1&maxAmount=100'
      \
      --header 'accept: application/json' \
      --header 'authorization: <API_KEY>'
   
    * var request = require("request");
      
      var options = {
        method: 'GET',
        url:
      'https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1234567/transactions',
        qs: {
          page: '0',
          size: '20',
          q: 'ABC',
          minAmount: '1',
          maxAmount: '100'
        },
        headers: {
          accept: 'application/json',
          authorization: '<API_KEY>'
        }
      };
      
      request(options, function (error, response, body) {
        if (error) throw new Error(error);
      
        console.log(body);
      });
   
    * import requests
      
      url =
      "https://api-sandbox.modulrfinance.com/api-sandbox-token/accounts/A1234567/transactions"
      
      querystring =
      {"page":"0","size":"20","q":"ABC","minAmount":"1","maxAmount":"100"}
      
      headers = {
        'accept': "application/json",
       'authorization': "<API_KEY>"
      }
      
      response = requests.request("GET", url, headers=headers,
      params=querystring)
      
      print(response.text)

 * Create
 * Create Virtual Card
 * Get Account
 * Get Transactions

 * Curl
 * Node
 * Python

Documentation → Sandbox →



EMBEDDED PAYMENTS.
DESIGNED BY YOU. POWERED BY US.

Read more →
Read more →
Read more →
Read more →
Ready to get started?


CONNECT WITH US

We've made it easy to explore Modulr. Check out our API. Take a look at our
pricing. And our community team is on hand to answer your queries within 24
hours.

Start Now →

Get in touch
Contact us →
Request pricing
Request →
Documentation
API Reference →

PRODUCT

 * UK Payments
 * EU Payments
 * Cards
 * Open Banking
 * Account Services

DEVELOPERS

 * API
 * Sandbox
 * Documentation
 * 

RESOURCES

 * Support
 * Case Studies
 * Guides
 * Blog

COMPANY

 * Our Mission
 * Our Team
 * Newsroom
 * Join our team

CONTACT

 * Contact us
 * Sign in

FINANCIAL SERVICES

 * Alternative Banking
 * Banking & Building Societies
 * Crypto & Web3
 * Lending
 * Merchant Payment Services
 * Trading & Investments

TRAVEL

ACCOUNTANCY & PAYROLL

 * AP & AR Automation Platform
 * Accounting & ERP Software
 * Payroll & HRM Software
 * Recruitment & Umbrella Companies
 * Wage Advance
 * Accountants & Payroll Bureaus
 * Business Payroll & Invoice Payments

MORE

 * Marketplaces
   
 * Others

PARTNER PROGRAMMES

SMALL BUSINESS

 * Business Payroll & Invoice Payments

PRODUCT

 * UK Payments
 * EU Payments
 * Cards
 * Open Banking
 * Account Services

DEVELOPERS

 * API
 * Sandbox
 * Documentation
 * 

RESOURCES

 * Support
 * Case Studies
 * Guides
 * Blog

COMPANY

 * Our Mission
 * Our Team
 * Newsroom
 * Join our team

CONTACT

 * Contact us
 * Sign in

FOLLOW US

 * 
 * 

FINANCIAL SERVICES

 * Alternative Banking
 * Banking & Building Societies
 * Crypto & Web3
 * Lending
 * Merchant Payment Services
 * Trading & Investments

TRAVEL

ACCOUNTANCY & PAYROLL

 * AP & AR Automation Platform
 * Accounting & ERP Software
 * Payroll & HRM Software
 * Recruitment & Umbrella Companies
 * Wage Advance
 * Accountants & Payroll Bureaus
 * Business Payroll & Invoice Payments

MORE

 * Marketplaces
   
 * Others

PARTNER PROGRAMMES

SMALL BUSINESS

 * Business Payroll & Invoice Payments

Modulr Finance Limited is a company registered in England with company number
09897957 and ICO registration: ZA183068, registered with the Financial Conduct
Authority (Firm Reference Number: 900699) as an EMD Agent of Modulr FS Limited.
Modulr FS Limited is a company registered in England with company number
09897919 and ICO registration: ZA183098, authorised and regulated by the
Financial Conduct Authority as an Electronic Money Institution (Firm Reference
Number: 900573). You can check the Financial Services Register here. Modulr
Finance B.V. is licensed and regulated by De Nederlandsche Bank (Relatienummer
R182870) as an Electronic Money Institution.

©2023 Modulr Finance Limited. All rights reserved.

 * Eligibility criteria
 * Terms & Conditions
 * Cookie Policy
 * Privacy Policy
 * Complaints Policy