PayFit Company API

The Company API from PayFit — 4 operation(s) for company.

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/payfit-company-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

payfit-company-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: PayFit Partner & Customer Absences Company API
  description: 'PayFit exposes two REST APIs for payroll and HR data integration: a Customer API authenticated via private API keys for direct company-data access, and a Partner API using OAuth 2.0 for solution developers building marketplace integrations. Endpoints cover collaborators, contracts, payslips, absences, company information, health insurance, provident funds, and documents.'
  version: '1.0'
  contact:
    name: PayFit Developers
    url: https://developers.payfit.io/
servers:
- url: https://partner-api.payfit.com
  description: Partner API (OAuth 2.0)
- url: https://api.payfit.com
  description: Customer API (API key)
security:
- bearerAuth: []
- apiKeyAuth: []
tags:
- name: Company
paths:
  /company:
    get:
      tags:
      - Company
      summary: Get company information
      operationId: getCompany
      responses:
        '200':
          description: Company details.
  /company/accounting:
    get:
      tags:
      - Company
      summary: Get accounting data
      operationId: getCompanyAccounting
      responses:
        '200':
          description: Accounting data.
  /company/payroll-status:
    get:
      tags:
      - Company
      summary: Get payroll status
      operationId: getCompanyPayrollStatus
      responses:
        '200':
          description: Payroll status.
  /company/payment-file:
    get:
      tags:
      - Company
      summary: Retrieve payment file
      operationId: getCompanyPaymentFile
      responses:
        '200':
          description: Payment file.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 bearer token for Partner API integrations.
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Private API key for Customer API direct access.