Holded Invoicing API

The Invoicing API from Holded — 15 operation(s) for invoicing.

Operations 30

GET /invoicing/v1/documents/invoice List invoices #
POST /invoicing/v1/documents/invoice Create an invoice #
GET /invoicing/v1/documents/invoice/{documentId} Get an invoice #
PUT /invoicing/v1/documents/invoice/{documentId} Update an invoice #
DELETE /invoicing/v1/documents/invoice/{documentId} Delete an invoice #
GET /invoicing/v1/documents/salesreceipt List sales receipts #
POST /invoicing/v1/documents/salesreceipt Create a sales receipt #
GET /invoicing/v1/documents/estimate List estimates / quotes #
POST /invoicing/v1/documents/estimate Create an estimate #
GET /invoicing/v1/documents/proform List pro-forma invoices #
POST /invoicing/v1/documents/proform Create a pro-forma invoice #
GET /invoicing/v1/documents/creditnote List credit notes #
POST /invoicing/v1/documents/creditnote Create a credit note #
GET /invoicing/v1/contacts List contacts #
POST /invoicing/v1/contacts Create a contact #
GET /invoicing/v1/contacts/{contactId} Get a contact #
PUT /invoicing/v1/contacts/{contactId} Update a contact #
DELETE /invoicing/v1/contacts/{contactId} Delete a contact #
GET /invoicing/v1/products List products #
POST /invoicing/v1/products Create a product #
GET /invoicing/v1/products/{productId} Get a product #
PUT /invoicing/v1/products/{productId} Update a product #
DELETE /invoicing/v1/products/{productId} Delete a product #
GET /invoicing/v1/warehouse List warehouses #
GET /invoicing/v1/services List services #
POST /invoicing/v1/services Create a service #
GET /invoicing/v1/payments List payments #
POST /invoicing/v1/payments Create a payment #
GET /invoicing/v1/treasury List treasury / bank accounts #
GET /invoicing/v1/expensesaccounts List expense accounts #

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/holded-invoicing-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

holded-invoicing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Holded REST Accounting Invoicing API
  description: 'REST API for the Holded business-management platform. Holded is part

    of Visma and offers ERP, CRM, accounting, invoicing, inventory, HR,

    projects, and team collaboration capabilities. The Holded API

    exposes JSON over HTTPS, authenticated with a tenant API key passed

    via the `key` request header. This spec captures the core resources

    in the public developer reference at developers.holded.com.

    '
  version: '1.0'
  contact:
    name: Holded Developers
    url: https://developers.holded.com
servers:
- url: https://api.holded.com/api
  description: Holded API root
security:
- ApiKeyAuth: []
tags:
- name: Invoicing
paths:
  /invoicing/v1/documents/invoice:
    get:
      summary: List invoices
      operationId: listInvoices
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create an invoice
      operationId: createInvoice
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/documents/invoice/{documentId}:
    parameters:
    - name: documentId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get an invoice
      operationId: getInvoice
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    put:
      summary: Update an invoice
      operationId: updateInvoice
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    delete:
      summary: Delete an invoice
      operationId: deleteInvoice
      responses:
        '204':
          description: Deleted
      tags:
      - Invoicing
  /invoicing/v1/documents/salesreceipt:
    get:
      summary: List sales receipts
      operationId: listSalesReceipts
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create a sales receipt
      operationId: createSalesReceipt
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/documents/estimate:
    get:
      summary: List estimates / quotes
      operationId: listEstimates
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create an estimate
      operationId: createEstimate
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/documents/proform:
    get:
      summary: List pro-forma invoices
      operationId: listProformas
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create a pro-forma invoice
      operationId: createProforma
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/documents/creditnote:
    get:
      summary: List credit notes
      operationId: listCreditNotes
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create a credit note
      operationId: createCreditNote
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/contacts:
    get:
      summary: List contacts
      operationId: listContacts
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create a contact
      operationId: createContact
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/contacts/{contactId}:
    parameters:
    - name: contactId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get a contact
      operationId: getContact
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    put:
      summary: Update a contact
      operationId: updateContact
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    delete:
      summary: Delete a contact
      operationId: deleteContact
      responses:
        '204':
          description: Deleted
      tags:
      - Invoicing
  /invoicing/v1/products:
    get:
      summary: List products
      operationId: listProducts
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create a product
      operationId: createProduct
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/products/{productId}:
    parameters:
    - name: productId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get a product
      operationId: getProduct
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    put:
      summary: Update a product
      operationId: updateProduct
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    delete:
      summary: Delete a product
      operationId: deleteProduct
      responses:
        '204':
          description: Deleted
      tags:
      - Invoicing
  /invoicing/v1/warehouse:
    get:
      summary: List warehouses
      operationId: listWarehouses
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
  /invoicing/v1/services:
    get:
      summary: List services
      operationId: listServices
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create a service
      operationId: createService
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/payments:
    get:
      summary: List payments
      operationId: listPayments
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
    post:
      summary: Create a payment
      operationId: createPayment
      responses:
        '201':
          description: Created
      tags:
      - Invoicing
  /invoicing/v1/treasury:
    get:
      summary: List treasury / bank accounts
      operationId: listTreasury
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
  /invoicing/v1/expensesaccounts:
    get:
      summary: List expense accounts
      operationId: listExpenseAccounts
      responses:
        '200':
          description: OK
      tags:
      - Invoicing
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: key
      description: Holded tenant API key, generated in account settings.