Earnipay APP Provider API

Third-party APP provider integration (Taxly) for FIRS submission

Operations 4

GET /v1/api/v1/businesses/{businessId}/app/connection-test Test APP provider connection #
POST /v1/api/v1/businesses/{businessId}/app/invoices/{invoiceId}/submit Submit invoice to APP provider #
PATCH /v1/api/v1/businesses/{businessId}/app/invoices/{invoiceId}/payment-status Update invoice payment status in FIRS #
GET /v1/api/v1/businesses/{businessId}/app/invoices/search Search invoices from FIRS system #

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-app-provider-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-app-provider-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Earnipay Invoicing App APP Provider API
  description: FIRS-compliant e-invoicing platform API
  version: '1.0'
  contact: {}
servers: []
tags:
- name: APP Provider
  description: Third-party APP provider integration (Taxly) for FIRS submission
paths:
  /v1/api/v1/businesses/{businessId}/app/connection-test:
    get:
      operationId: AppProviderController_testConnection_v1
      parameters:
      - name: businessId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Connection test result
      security:
      - JWT-auth: []
      summary: Test APP provider connection
      tags:
      - APP Provider
  /v1/api/v1/businesses/{businessId}/app/invoices/{invoiceId}/submit:
    post:
      operationId: AppProviderController_submitInvoice_v1
      parameters:
      - name: invoiceId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Invoice submitted successfully
        '400':
          description: Validation failed or submission error
      security:
      - JWT-auth: []
      summary: Submit invoice to APP provider
      tags:
      - APP Provider
  /v1/api/v1/businesses/{businessId}/app/invoices/{invoiceId}/payment-status:
    patch:
      operationId: AppProviderController_updatePaymentStatus_v1
      parameters:
      - name: invoiceId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Payment status updated successfully
      security:
      - JWT-auth: []
      summary: Update invoice payment status in FIRS
      tags:
      - APP Provider
  /v1/api/v1/businesses/{businessId}/app/invoices/search:
    get:
      operationId: AppProviderController_searchInvoices_v1
      parameters:
      - name: businessId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Invoices retrieved successfully
      security:
      - JWT-auth: []
      summary: Search invoices from FIRS system
      tags:
      - APP Provider
components:
  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