Brainbase General API

GeneralController endpoints

Operations 3

POST /api/report/runtime/error Report runtime error #
POST /api/get/information/general Get general information #
GET /api/get/information/git Get git information #

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/brainbase-general-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

brainbase-general-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: v1 ApiContract General API
  version: '0.1'
  description: ApiContractController endpoints
servers:
- url: https://api.brainbase.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: General
  description: GeneralController endpoints
paths:
  /api/report/runtime/error:
    post:
      tags:
      - General
      summary: Report runtime error
      operationId: GeneralController__reportRuntimeError
      parameters:
      - name: user-id
        in: query
        description: Current user id
        required: true
        schema:
          type: string
      - name: agent
        in: query
        description: Agent
        required: true
        schema:
          type: string
      - name: url
        in: query
        description: Current url address
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Runtime error loged.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RuntimeErrorReportResponse'
  /api/get/information/general:
    post:
      tags:
      - General
      summary: Get general information
      operationId: GeneralController__getGeneralApplicationInformation
      responses:
        '200':
          description: Return general application information.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeneralApplicationInformationResponse'
  /api/get/information/git:
    get:
      tags:
      - General
      summary: Get git information
      operationId: GeneralController__getGitInformation
      responses:
        '200':
          description: Return Git information.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitInformationResponse'
components:
  schemas:
    GeneralApplicationInformationResponse:
      properties:
        featuresConfig:
          $ref: '#/components/schemas/FeatureConfigResponse'
      type: object
    RuntimeErrorReportResponse:
      properties:
        res:
          type: boolean
      type: object
    FeatureConfigResponse:
      properties:
        version:
          type: integer
          format: int64
        rollouts:
          type: array
          items:
            type: object
        typedAudiences:
          type: array
          items:
            type: object
        anonymizeIP:
          type: boolean
        projectId:
          type: integer
          format: int64
        variables:
          type: array
          items:
            type: object
        featureFlags:
          type: array
          items:
            type: object
        experiments:
          type: array
          items:
            type: object
        audiences:
          type: array
          items:
            type: object
        groups:
          type: array
          items:
            type: object
        attributes:
          type: array
          items:
            type: object
        botFiltering:
          type: boolean
        accountId:
          type: integer
          format: int64
        events:
          type: array
          items:
            type: object
        revision:
          type: integer
          format: int64
      type: object
    GitInformationResponse:
      properties:
        branch:
          type: string
        path:
          type: string
        hash:
          type: string
        date:
          type: string
      type: object
  securitySchemes:
    bearer:
      description: A short description for security scheme
      scheme: bearer
      bearerFormat: JWT
      type: http