Tadeus API Billing API

The billing API from Tadeus API — 6 operation(s) for billing.

Operations 6

GET /billing/balance/ #
GET /billing/balance/{id}/ #
GET /billing/payments/ #
GET /billing/payments/{id}/ #
GET /billing/transactions/ #
GET /billing/transactions/{id}/ #

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/tadeus-api-billing-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

tadeus-api-billing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Integration Billing API
  description: API Integration endpoints documentation
  version: v1
servers:
- url: https://app.tadeus.net/api/integration/v1
security:
- api_key: []
- api_secret: []
tags:
- name: billing
paths:
  /billing/balance/:
    parameters: []
    get:
      operationId: billing_balance_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CreditBalance'
      tags:
      - billing
  /billing/balance/{id}/:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: billing_balance_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreditBalance'
      tags:
      - billing
  /billing/payments/:
    parameters: []
    get:
      operationId: billing_payments_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CreditTransaction'
      tags:
      - billing
  /billing/payments/{id}/:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: billing_payments_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreditTransaction'
      tags:
      - billing
  /billing/transactions/:
    parameters: []
    get:
      operationId: billing_transactions_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CreditTransaction'
      tags:
      - billing
  /billing/transactions/{id}/:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: billing_transactions_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreditTransaction'
      tags:
      - billing
components:
  schemas:
    CreditBalance:
      type: object
      properties:
        balance:
          title: Balance
          description: Integer credits, 10 Credits = $0.01
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        total_deposited:
          title: Total deposited
          type: string
          readOnly: true
        updated_at:
          title: Updated at
          type: string
          format: date-time
          readOnly: true
    CreditTransaction:
      required:
      - amount
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        amount:
          title: Amount
          description: Positive = grant, negative = debit; 10 Credits = $0.01
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        source:
          title: Source
          type: string
          enum:
          - topup
          - subscription
          - usage
          - refund
          - admin
          - adjustment
        reason:
          title: Reason
          type: string
          maxLength: 255
        timestamp:
          title: Timestamp
          type: string
          format: date-time
        balance_after:
          title: Balance after
          description: Balance after this transaction
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: -2147483648
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-API-KEY-ID
    api_secret:
      type: apiKey
      in: header
      name: X-API-SECRET