bexio Accounting API

The Accounting API from bexio — 4 operation(s) for accounting.

Operations 5

GET /accounts List chart-of-accounts entries (Konten) #
GET /currencies List currencies #
GET /taxes List VAT (MWST) tax rates #
GET /accounting/manual_entries List manual journal entries (Buchungen) #
POST /accounting/manual_entries Create a manual journal entry #

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/bexio-accounting-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

bexio-accounting-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: bexio Accounting API
  description: REST API for bexio, the Swiss cloud business-management platform (accounting, invoicing, contacts, projects, payroll). All endpoints are served over HTTPS under https://api.bexio.com/2.0. JSON is the data-interchange format. Authentication is OAuth 2.0 Authorization Code (OpenID Connect) or a Personal Access Token (PAT); both are presented as a Bearer token. This document is modeled from the public documentation, not a first-party spec.
  termsOfService: https://www.bexio.com/en-CH/gtc
  contact:
    name: bexio Developer Support
    url: https://developer.bexio.com/
  version: '2.0'
servers:
- url: https://api.bexio.com/2.0
  description: bexio API v2.0 (Switzerland)
security:
- bearerAuth: []
tags:
- name: Accounting
paths:
  /accounts:
    get:
      operationId: listAccounts
      tags:
      - Accounting
      summary: List chart-of-accounts entries (Konten)
      responses:
        '200':
          description: A list of accounts.
  /currencies:
    get:
      operationId: listCurrencies
      tags:
      - Accounting
      summary: List currencies
      responses:
        '200':
          description: A list of currencies (CHF and others).
  /taxes:
    get:
      operationId: listTaxes
      tags:
      - Accounting
      summary: List VAT (MWST) tax rates
      responses:
        '200':
          description: A list of Swiss VAT tax definitions.
  /accounting/manual_entries:
    get:
      operationId: listManualEntries
      tags:
      - Accounting
      summary: List manual journal entries (Buchungen)
      responses:
        '200':
          description: A list of manual entries.
    post:
      operationId: createManualEntry
      tags:
      - Accounting
      summary: Create a manual journal entry
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: The created manual entry.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'OAuth 2.0 Authorization Code (OpenID Connect, issuer https://auth.bexio.com/realms/bexio) access token, or a Personal Access Token (PAT), presented as an Authorization: Bearer header.'