Octane Billing Settings API

Manage vendor billing settings

Operations 6

GET /billing_settings Get Billing Settings #
POST /billing_settings Create Billing Settings #
PUT /billing_settings Update Billing Settings #
DELETE /billing_settings Delete Billing Settings #
GET /payment_gateway_credentials List Payment Gateway Credentials #
POST /payment_gateway_credentials Create Payment Gateway Credential #

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/octane-billing-settings-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

octane-billing-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Octane REST Admin Billing Settings API
  description: REST API for managing meters, customers, pricing plans, subscriptions, measurements, and real-time usage data for usage-based billing workflows. Octane enables infrastructure and SaaS companies to implement flexible pay-as-you-go billing similar to Snowflake and AWS.
  version: 1.0.0
  contact:
    name: Octane Support
    url: https://www.getoctane.io
servers:
- url: https://api.getoctane.io
  description: Octane Production API
security:
- BearerApiKeyAuth: []
tags:
- name: Billing Settings
  description: Manage vendor billing settings
paths:
  /billing_settings:
    get:
      summary: Get Billing Settings
      description: Get billing settings for the vendor.
      operationId: billingSettingsGet
      tags:
      - Billing Settings
      responses:
        '200':
          description: Billing settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BillingSettings'
    post:
      summary: Create Billing Settings
      description: Create billing settings for the vendor.
      operationId: billingSettingsPost
      tags:
      - Billing Settings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BillingSettings'
      responses:
        '200':
          description: Billing settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BillingSettings'
    put:
      summary: Update Billing Settings
      description: Update billing settings for the vendor.
      operationId: billingSettingsPut
      tags:
      - Billing Settings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BillingSettings'
      responses:
        '200':
          description: Updated billing settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BillingSettings'
    delete:
      summary: Delete Billing Settings
      description: Delete billing settings for the vendor.
      operationId: billingSettingsDelete
      tags:
      - Billing Settings
      responses:
        '204':
          description: Billing settings deleted
  /payment_gateway_credentials:
    get:
      summary: List Payment Gateway Credentials
      description: Get all payment gateway credentials for a vendor.
      operationId: paymentGatewayCredentialsGet
      tags:
      - Billing Settings
      responses:
        '200':
          description: Payment gateway credentials
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
    post:
      summary: Create Payment Gateway Credential
      description: Add payment gateway credentials for a vendor.
      operationId: paymentGatewayCredentialsPost
      tags:
      - Billing Settings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Created credential
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    BillingSettings:
      type: object
      properties:
        payment_gateway_type:
          type: string
          description: Type of payment gateway (e.g., stripe).
        invoice_grace_period_days:
          type: integer
          description: Number of days grace period before invoice payment is due.
        auto_charge:
          type: boolean
          description: Whether to automatically charge customers on invoice.
        billing_period_anchor:
          type: string
          description: Anchor date for billing periods.
  securitySchemes:
    BearerApiKeyAuth:
      type: http
      scheme: bearer
      description: API key passed as a Bearer token in the Authorization header.