Arcee AI Billing API

The Billing API from Arcee AI — 4 operation(s) for billing.

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/arcee-ai-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 email required.

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

OpenAPI Specification

arcee-ai-billing-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: AFM Access Profiles Billing API
  version: 0.1.0
tags:
- name: Billing
paths:
  /app/v1/billing:
    get:
      tags:
      - Billing
      summary: Get Customer Billing Data
      description: 'Get customer billing data.

        Uses primary DB to ensure immediate consistency (e.g., seeing newly added payment methods).'
      operationId: get_customer_billing_data_app_v1_billing_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - HTTPBearer: []
  /app/v1/billing/link:
    get:
      tags:
      - Billing
      summary: Get Billing Link
      description: 'Get billing portal link.

        Uses primary DB to ensure immediate consistency.'
      operationId: get_billing_link_app_v1_billing_link_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - HTTPBearer: []
  /app/v1/billing/topup:
    post:
      tags:
      - Billing
      summary: Top Up Wallet
      operationId: top_up_wallet_app_v1_billing_topup_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TopUpRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /app/v1/billing/auto-topup:
    put:
      tags:
      - Billing
      summary: Update Topup
      operationId: update_topup_app_v1_billing_auto_topup_put
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateTopUpRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    UpdateTopUpRequest:
      properties:
        enableAutoTopUp:
          type: boolean
          title: Enableautotopup
        topUpAmount:
          anyOf:
          - type: integer
          - type: 'null'
          title: Topupamount
        topUpThreshold:
          anyOf:
          - type: integer
          - type: 'null'
          title: Topupthreshold
      type: object
      required:
      - enableAutoTopUp
      - topUpAmount
      - topUpThreshold
      title: UpdateTopUpRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TopUpRequest:
      properties:
        amount:
          type: string
          title: Amount
      type: object
      required:
      - amount
      title: TopUpRequest
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer