Botify Collections API

The Collections API from Botify — 2 operation(s) for collections.

Operations 2

GET /projects/{username}/{project_slug}/collections #
GET /projects/{username}/{project_slug}/collections/{collection} #

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-collections-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-collections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  description: Botify Saas API
  title: Botify Collections API
servers:
- url: https://api.botify.com/v1
security:
- DjangoRestToken: []
tags:
- name: Collections
paths:
  /projects/{username}/{project_slug}/collections:
    parameters:
    - name: username
      in: path
      required: true
      description: User's identifier
      schema:
        type: string
    - name: project_slug
      in: path
      required: true
      description: Project's identifier
      schema:
        type: string
    get:
      description: List all collections for a project
      summary: ''
      operationId: getProjectCollections
      tags:
      - Collections
      responses:
        default:
          description: error payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultPayload'
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
  /projects/{username}/{project_slug}/collections/{collection}:
    parameters:
    - name: username
      in: path
      required: true
      description: User's identifier
      schema:
        type: string
    - name: project_slug
      in: path
      required: true
      description: Project's identifier
      schema:
        type: string
    - name: collection
      in: path
      required: true
      description: The collection to query
      schema:
        type: string
    get:
      description: Get the detail of a collection
      summary: ''
      operationId: getCollectionDetail
      tags:
      - Collections
      parameters:
      - in: query
        name: sequenced
        required: false
        description: Whether to use sequenced groups
        schema:
          type: boolean
          default: false
      responses:
        default:
          description: error payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultPayload'
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionDatasets'
components:
  schemas:
    Dataset:
      properties:
        id:
          type: string
        name:
          type: string
        groups:
          type: array
          items:
            $ref: '#/components/schemas/DatasetGroup'
        fields:
          type: array
          items:
            $ref: '#/components/schemas/DatasetField'
        multiple:
          type: boolean
        suggested_operations:
          type: array
          items:
            $ref: '#/components/schemas/SuggestedOperations'
        category:
          type: array
          items:
            type: string
      type: object
      required:
      - id
      - name
      - groups
      - fields
      - category
    SuggestedOperations:
      properties:
        name:
          type: string
        operation:
          type: object
        group:
          type: string
        meta:
          type: object
      type: object
      required:
      - name
      - operation
      - meta
    Collection:
      properties:
        id:
          type: string
        name:
          type: string
        date:
          type: string
          readOnly: true
        timestamped:
          type: boolean
        date_start:
          type: string
          format: date
        date_end:
          type: string
          format: date
        generic_name:
          type: string
          readOnly: true
      type: object
      required:
      - id
      - name
      - timestamped
    DatasetField:
      properties:
        multiple:
          type: boolean
        name:
          type: string
        subtype:
          type: string
        group:
          type: string
        type:
          type: string
        kind:
          type: string
        id:
          type: string
        permissions:
          type: array
          items:
            type: string
        aliases:
          type: array
          items:
            type: string
        settings:
          type: object
        optional:
          type: boolean
        suggestion:
          type: boolean
        meta:
          type: object
        deprecated:
          type: boolean
      type: object
      required:
      - multiple
      - name
      - subtype
      - type
      - kind
      - id
      - permissions
      - optional
    CollectionDatasets:
      properties:
        datasets:
          type: array
          items:
            $ref: '#/components/schemas/Dataset'
        metadata:
          $ref: '#/components/schemas/CollectionMetadata'
      type: object
      required:
      - datasets
    DatasetGroup:
      properties:
        id:
          type: string
        name:
          type: string
        parent:
          type: string
        multiple:
          type: boolean
        description:
          type: string
        type:
          type: string
        default:
          type: string
        options:
          type: array
          items:
            type: object
      type: object
      required:
      - id
      - name
    CollectionMetadata:
      properties:
        date_start:
          type: string
          format: date
        date_end:
          type: string
          format: date
        date_last_modified:
          type: string
          format: date-time
        config:
          type: object
      type: object
    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