Earnipay Bank API

The Bank API from Earnipay — 2 operation(s) for bank.

Operations 2

GET /v1/banks/list Get list of banks #
POST /v1/banks/verify-account Verify bank 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/earnipay-bank-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

earnipay-bank-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Earnipay Invoicing App Bank API
  description: FIRS-compliant e-invoicing platform API
  version: '1.0'
  contact: {}
servers: []
tags:
- name: Bank
paths:
  /v1/banks/list:
    get:
      description: Retrieve a list of all supported banks from a provider.
      operationId: BankController_getBankList_v1
      parameters: []
      responses:
        '200':
          description: Bank list retrieved successfully
        '401':
          description: Unauthorized
        '404':
          description: Provider not found
      security:
      - JWT-auth: []
      summary: Get list of banks
      tags:
      - Bank
  /v1/banks/verify-account:
    post:
      description: Verify the details of a bank account.
      operationId: BankController_verifyBankAccount_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VerifyBankAccountDto'
      responses:
        '200':
          description: Bank account verified successfully
        '400':
          description: Bad Request - Invalid input data
        '401':
          description: Unauthorized
        '404':
          description: Provider not found
      security:
      - JWT-auth: []
      summary: Verify bank account
      tags:
      - Bank
components:
  schemas:
    VerifyBankAccountDto:
      type: object
      properties:
        accountNumber:
          type: string
          description: Bank account number
          example: 0123456789
        bankCode:
          type: string
          description: Bank code
          example: '033'
      required:
      - accountNumber
      - bankCode
  securitySchemes:
    JWT-auth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      name: JWT
      description: Enter JWT token
      in: header
    API-Key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key for third-party integrations