ZeroEntropy Status API

The Status API from ZeroEntropy — 1 operation(s) for status.

Operations 1

POST /status/get-status Get Status #

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-status-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-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ZeroEntropy Admin Status 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: Status
paths:
  /status/get-status:
    post:
      tags:
      - Status
      summary: Get Status
      description: 'Gets the current indexing status across all documents.


        If a collection name is passed in, it will get the indexing status of only the documents within that collection. Otherwise, it will show the cumulative status across all of your collections.


        A `404 Not Found` status code will be returned, if a collection name was provided, but it does not exist.'
      operationId: get_status_status_get_status_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StatusRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusResponse'
        '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:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    StatusRequest:
      properties:
        collection_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Collection Name
          description: The collection name to use. If `collection_name` is `null` or omitted, then the cumulative status across all collections will be shown.
      type: object
      title: StatusRequest
    StatusResponse:
      properties:
        num_documents:
          type: integer
          title: Num Documents
          description: The total number of documents, regardless of their status. It is guaranteed that the sum of all of the other fields, is this number.
        num_parsing_documents:
          type: integer
          title: Num Parsing Documents
          description: The number of documents that are being parsed. This refers files of the type PDF, DOCX, PPT, etc, whose images are being processed, or are waiting to be processed, by our OCR system.
        num_indexing_documents:
          type: integer
          title: Num Indexing Documents
          description: The number of documents being indexed. Indexing occurs only after the document has finished parsing.
        num_indexed_documents:
          type: integer
          title: Num Indexed Documents
          description: The number of documents that are currently indexed.
        num_failed_documents:
          type: integer
          title: Num Failed Documents
          description: The number of failed documents. Failures can occur during either parsing, or indexing. It can occur if the file is malformed or incomplete. If you believe that the file is formatted correctly, please contact us at `founders@zeroentropy.dev` to assist.
        num_indexed_bytes:
          type: integer
          title: Num Indexed Bytes
          description: The total number of bytes used by documents that are currently indexed. Measured as UTF-8 bytes. For PDF/DOCX/PPT/etc, this is of the OCR'ed text.
      type: object
      required:
      - num_documents
      - num_parsing_documents
      - num_indexing_documents
      - num_indexed_documents
      - num_failed_documents
      - num_indexed_bytes
      title: StatusResponse
    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
  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