RevenueBase Account API

The Account API from RevenueBase — 2 operation(s) for account.

Operations 2

GET /v2/account/balance Get your remaining credit balance #
POST /v2/account/api-keys/rotate Rotate your API key #

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/revenuebase-account-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

revenuebase-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Revenuebase API v2 Account API
  version: 0.1.0
servers:
- url: https://api.revenuebase.ai
tags:
- name: Account
paths:
  /v2/account/balance:
    get:
      tags:
      - Account
      summary: Get your remaining credit balance
      description: Returns the number of validation credits remaining on your account. Each `Valid` or `Invalid` result deducts 1 credit.
      operationId: get_usage_v2_account_balance_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsageResponse'
      security:
      - APIKeyHeader: []
      x-codeSamples:
      - lang: Python
        label: Python SDK
        source: 'from revenuebase_sdk import RevenuebaseClient


          client = RevenuebaseClient()


          usage = client.account.balance()

          print(usage.credits)'
  /v2/account/api-keys/rotate:
    post:
      tags:
      - Account
      summary: Rotate your API key
      description: Generates a new API key and immediately invalidates the previous one. Update all integrations with the new key before making further requests.
      operationId: rotate_api_key_v2_account_api_keys_rotate_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NewKeyResponse'
      security:
      - APIKeyHeader: []
      x-codeSamples:
      - lang: Python
        label: Python SDK
        source: 'from revenuebase_sdk import RevenuebaseClient


          client = RevenuebaseClient()


          response = client.account.rotate_api_key()

          print(response.api_key)'
components:
  schemas:
    NewKeyResponse:
      properties:
        api_key:
          type: string
          title: Api Key
      type: object
      required:
      - api_key
      title: NewKeyResponse
    UsageResponse:
      properties:
        credits:
          type: integer
          title: Credits
      type: object
      required:
      - credits
      title: UsageResponse
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-key