Modulr Inbound Payments API

Inbound payments

Operations 1

POST /credit Endpoint to mock the credit of an account #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/modulr-inbound-payments-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

modulr-inbound-payments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Modulr Inbound Payments API
  description: Modulr API
  license:
    name: © Modulr Finance
    url: https://www.modulrfinance.com
  version: '1.0'
servers:
- url: https://api-sandbox.modulrfinance.com/api-sandbox-token
security:
- modulo_security: []
tags:
- name: Inbound Payments
  description: Inbound payments
paths:
  /credit:
    post:
      tags:
      - Inbound Payments
      summary: Endpoint to mock the credit of an account
      description: Inbound payments - mock (Sandbox only)
      operationId: createPayments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/inboundpayment.InboundPaymentRequest'
        required: true
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/inboundpayment.MessageResponse'
      security:
      - HMAC: []
      - TOKEN: []
components:
  schemas:
    inboundpayment.AccountIdentifierDetailRequest:
      type: object
      properties:
        type:
          type: string
          description: Account identifier type
          enum:
          - SCAN
          - IBAN
          - DD
          - INTL
          - ANBRN
          - AN
        accountNumber:
          type: string
          description: Account number
        sortCode:
          type: string
          description: Sortcode
        iban:
          type: string
          description: IBAN
        bic:
          type: string
          description: BIC
      required:
      - type
    inboundpayment.SchemeInfoRequest:
      type: object
      properties:
        id:
          type: string
          description: unique id that identifies a payment end-to-end within a scheme. If used ensure that its unique
    inboundpayment.MessageResponse:
      type: object
      properties:
        field:
          type: string
        code:
          type: string
          enum:
          - GENERAL
          - BUSINESSRULE
          - MFASTATUS
          - MFAERROR
          - MFATIMEOUT
          - MFADEVICEMM
          - MFAMESSAGEINVALID
          - NOTFOUND
          - DUPLICATE
          - INVALID
          - CONNECTION
          - RETRY
          - RATELIMIT
          - PERMISSION
          - NOTACCEPTABLE
          - MFAVERIFICATION
          - TOKENEXPIRED
        errorCode:
          type: string
        message:
          type: string
        sourceService:
          type: string
    inboundpayment.Address:
      type: object
      properties:
        addressLine1:
          type: string
        addressLine2:
          type: string
        postTown:
          type: string
        postCode:
          type: string
        country:
          type: string
    inboundpayment.PartyDetailRequest:
      type: object
      properties:
        name:
          type: string
          description: Party name
        identifier:
          $ref: '#/components/schemas/inboundpayment.AccountIdentifierDetailRequest'
          description: Account identifier
        address:
          $ref: '#/components/schemas/inboundpayment.Address'
          description: Party address
      required:
      - identifier
      - name
    inboundpayment.InboundPaymentRequest:
      type: object
      description: Details of credit to the account
      properties:
        accountId:
          type: string
          description: The account to be credited
          minLength: 1
        payerDetail:
          $ref: '#/components/schemas/inboundpayment.PartyDetailRequest'
          description: Payer details
        payeeDetail:
          $ref: '#/components/schemas/inboundpayment.PartyDetailRequest'
          description: Payee details
        description:
          type: string
          description: Description of the credit
          maxLength: 255
          minLength: 0
        amount:
          type: number
          description: Amount of the payment in major current Units - '1' = 1.00 GBP
          maximum: 2147483647
          minimum: 0.01
        type:
          type: string
          description: ' Type of credit, values: '
          enum:
          - PI_BACS
          - PI_DD
          - PI_FAST
          - PI_SECT
          - PI_SEPA_INST
          - PI_SWIFT
          minLength: 1
        transactionDate:
          type: string
          description: Date of credit in yyyy-MM-ddTHH:mm:ssZ format
        numberOfTransactions:
          type: integer
          format: int32
          description: Number of credit transactions to create, defaults to 1
          maximum: 50
          minimum: 1
        schemeInformation:
          $ref: '#/components/schemas/inboundpayment.SchemeInfoRequest'
          description: Optional scheme details
      required:
      - accountId
      - amount
      - description
      - payerDetail
      - type
  securitySchemes:
    modulo_security:
      type: apiKey
      name: Authorization
      in: header
    TOKEN:
      type: apiKey
      name: Authorization
      in: header
x-readme:
  proxy-enabled: false