Botify Datasource API

The Datasource API from Botify — 1 operation(s) for datasource.

Operations 1

GET /users/{username}/datasources_summary_by_projects #

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/botify-datasource-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

botify-datasource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  description: Botify Saas API
  title: Botify Datasource API
servers:
- url: https://api.botify.com/v1
security:
- DjangoRestToken: []
tags:
- name: Datasource
paths:
  /users/{username}/datasources_summary_by_projects:
    parameters:
    - name: username
      in: path
      required: true
      description: User's identifier
      schema:
        type: string
    get:
      description: Get the datasources details for all projects of a user
      summary: ''
      operationId: getDatasourcesSummaryByProjects
      tags:
      - Datasource
      responses:
        default:
          description: error payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultPayload'
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectDatasourceSummary'
components:
  schemas:
    ProjectDatasourceSummary:
      properties:
        runnable:
          type: string
          readOnly: true
        datasource:
          type: string
        date_last_successful_revision:
          type: string
          readOnly: true
        last_revision_status:
          type: string
          readOnly: true
        stats:
          type: string
          readOnly: true
        segments:
          type: string
          readOnly: true
      type: object
      required:
      - datasource
    DefaultPayload:
      type: object
      description: default payload for object for all HTTP codes that are not covered individually
      properties:
        error:
          type: object
          properties:
            message:
              description: Error Message
              type: string
            error_code:
              description: Error Code
              type: string
            error_detail:
              description: If available, detailed error
              type: object
  securitySchemes:
    DjangoRestToken:
      type: apiKey
      name: Authorization
      in: header