Sourcebot System API

System health and version endpoints.

Operations 2

GET /api/version Get Sourcebot version #
GET /api/health Health check #

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/sourcebot-system-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

sourcebot-system-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sourcebot Public Enterprise (EE) Enterprise (EE) System API
  version: v5.1.3
  description: 'OpenAPI description for the public Sourcebot REST endpoints used for search, repository listing, and file browsing. Authentication is instance-dependent: API keys are the standard integration mechanism, OAuth bearer tokens are EE-only, and some instances may allow anonymous access.'
servers:
- url: https://app.sourcebot.dev
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- bearerToken: []
- apiKeyHeader: []
- {}
tags:
- name: System
  description: System health and version endpoints.
paths:
  /api/version:
    get:
      operationId: getVersion
      tags:
      - System
      summary: Get Sourcebot version
      description: Returns the currently running Sourcebot version string.
      responses:
        '200':
          description: Current Sourcebot version.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicVersionResponse'
  /api/health:
    get:
      operationId: getHealth
      tags:
      - System
      summary: Health check
      responses:
        '200':
          description: Service is healthy.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicHealthResponse'
components:
  schemas:
    PublicHealthResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - ok
      required:
      - status
    PublicVersionResponse:
      type: object
      properties:
        version:
          type: string
      required:
      - version
  securitySchemes:
    bearerToken:
      type: http
      scheme: bearer
      description: Bearer authentication header of the form `Bearer <token>`, where `<token>` is your API key.
    apiKeyHeader:
      type: apiKey
      in: header
      name: X-Sourcebot-Api-Key
      description: 'Header of the form `X-Sourcebot-Api-Key: <token>`, where `<token>` is your API key.'