Tabs Obligations API

The Obligations API from Tabs — 4 operation(s) for obligations.

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/tabs-fi-obligations-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

tabs-fi-obligations-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Tabs Platform BillingTerms Obligations API
  description: 'REST API for the Tabs revenue automation platform: customers, contracts, items, revenue categories, obligations, billing terms, invoices, payments, credit memos, usage events, and reports. Source: https://docs.tabsplatform.com/llms.txt'
  version: '3'
  contact:
    name: Tabs
    url: https://docs.tabsplatform.com/
servers:
- url: https://api.tabsplatform.com
  description: Production (assumed; consult Tabs docs for exact base URL)
security:
- ApiKeyAuth: []
tags:
- name: Obligations
paths:
  /contracts/{id}/obligations:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Obligations
      summary: Create contract obligation
      operationId: createContractObligation
      responses:
        '201':
          description: Created
  /contracts/{id}/obligations/{obligationId}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    - name: obligationId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Obligations
      summary: Get obligation by ID
      operationId: getContractObligation
      responses:
        '200':
          description: OK
    patch:
      tags:
      - Obligations
      summary: Update obligation
      operationId: updateContractObligation
      responses:
        '200':
          description: OK
    delete:
      tags:
      - Obligations
      summary: Delete obligation
      operationId: deleteContractObligation
      responses:
        '204':
          description: Deleted
  /obligations:
    get:
      tags:
      - Obligations
      summary: List obligations
      operationId: listObligations
      responses:
        '200':
          description: OK
  /obligations/custom-revenue:
    post:
      tags:
      - Obligations
      summary: Upsert custom revenue
      operationId: upsertCustomRevenue
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Server-side API key issued from the Tabs dashboard for backend integrations.