ZeroEntropy Collections API

The Collections API from ZeroEntropy — 3 operation(s) for collections.

Operations 3

POST /collections/add-collection Add Collection #
POST /collections/get-collection-list Get Collection List #
POST /collections/delete-collection Delete 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/zeroentropy-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zeroentropy-collections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ZeroEntropy Admin Collections API
  description: This API provides access to ZeroEntropy's SoTA retrieval pipeline. Enjoy!
  version: 0.1.0
servers:
- url: https://api.zeroentropy.dev/v1
  description: ZeroEntropy API
- url: https://eu-api.zeroentropy.dev/v1
  description: ZeroEntropy API (EU datacenters)
tags:
- name: Collections
paths:
  /collections/add-collection:
    post:
      tags:
      - Collections
      summary: Add Collection
      description: 'Adds a collection.


        If the collection already exists, a `409 Conflict` status code will be returned.'
      operationId: add_collection_collections_add_collection_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddCollectionRequest'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              example:
                detail: Description of Error
        '409':
          description: Conflict
          content:
            application/json:
              example:
                detail: Description of Error
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /collections/get-collection-list:
    post:
      tags:
      - Collections
      summary: Get Collection List
      description: Gets a complete list of all of your collections.
      operationId: get_collection_list_collections_get_collection_list_post
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/EmptyRequest'
              title: Request
              default: {}
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCollectionListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /collections/delete-collection:
    post:
      tags:
      - Collections
      summary: Delete Collection
      description: 'Deletes a collection.


        A `404 Not Found` status code will be returned, if the provided collection name does not exist.'
      operationId: delete_collection_collections_delete_collection_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteCollectionRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              example:
                detail: Description of Error
        '404':
          description: Not Found
          content:
            application/json:
              example:
                detail: Description of Error
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DefaultResponse:
      properties:
        message:
          type: string
          title: Message
          description: This string will always be "Success!". This may change in the future.
          default: Success!
      type: object
      title: DefaultResponse
    EmptyRequest:
      x-stainless-empty-object: 'true'
      properties: {}
      type: object
      title: EmptyRequest
    DeleteCollectionRequest:
      properties:
        collection_name:
          type: string
          title: Collection Name
          description: The name of the collection to delete.
      type: object
      required:
      - collection_name
      title: DeleteCollectionRequest
    GetCollectionListResponse:
      properties:
        collection_names:
          items:
            type: string
          type: array
          title: Collection Names
          description: The names of the matched collections.
      type: object
      required:
      - collection_names
      title: GetCollectionListResponse
    AddCollectionRequest:
      properties:
        collection_name:
          type: string
          title: Collection Name
          description: The name of the collection to add. The maximum length of this string is 1024 characters. If special characters are used, then the UTF-8 encoded string cannot exceed 1024 bytes.
        num_shards:
          type: integer
          title: Num Shards
          description: '[ADVANCED] The number of shards to use for this collection. By using K shards, your documents can index with K times more throughput. However, queries will be automatically sent to all K shards and then aggregated. For large collections, this can make queries faster. But for small collections, this will make queries slower. `num_shards` must be one of [1, 8, 16, 32, 64]. The default is 1.'
          default: 1
      type: object
      required:
      - collection_name
      title: AddCollectionRequest
  securitySchemes:
    HTTPBearer:
      type: http
      description: 'The `Authorization` header must be provided in the format `Bearer <your-api-key>`.


        You can get your API Key at the [Dashboard](https://dashboard.zeroentropy.dev/)!'
      scheme: bearer