Pennylane Change Events API

The Change Events API from Pennylane — 2 operation(s) for change events.

Operations 2

GET /customer_invoices/changes Get customer invoice change events #
GET /supplier_invoices/changes Get supplier invoice change events #

Documentation

Specifications

Other Resources

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/pennylane-change-events-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 email required.

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

OpenAPI Specification

pennylane-change-events-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pennylane Company Account Change Events API
  description: Pennylane is a French financial and accounting operating system for SMEs and accounting firms. The Company API (v2) lets companies, firms, and integration partners access and sync invoicing, accounting, banking, and financial data, and automate end-to-end workflows. V2 is the stable version; V1 is deprecated.
  termsOfService: https://pennylane.readme.io/docs/api-contract-terms
  contact:
    name: Pennylane API Support
    url: https://pennylane.readme.io/docs/how-to-reach-out-to-us
  version: '2.0'
servers:
- url: https://app.pennylane.com/api/external/v2
  description: Production (v2)
security:
- bearerAuth: []
tags:
- name: Change Events
paths:
  /customer_invoices/changes:
    get:
      operationId: getCustomerInvoicesChanges
      tags:
      - Change Events
      summary: Get customer invoice change events
      description: 'Returns the list of changes from the provided start_date (last 4 weeks retained), ordered by processed_at ASC. Requires scope: customer_invoices:readonly or customer_invoices:all.'
      parameters:
      - name: start_date
        in: query
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: OK
  /supplier_invoices/changes:
    get:
      operationId: getSupplierInvoicesChanges
      tags:
      - Change Events
      summary: Get supplier invoice change events
      parameters:
      - name: start_date
        in: query
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token
      description: Bearer token in the Authorization header. The token may be a Company API token, a Firm API token, or an OAuth 2.0 access token obtained via https://app.pennylane.com/oauth/authorize and /oauth/token.