Brellium Documents API

The Documents API from Brellium — 3 operation(s) for documents.

Operations 3

POST /documents Upload a document
POST /documents/upload-url Get a presigned URL to upload a large document
GET /documents/{document_id} Get information about a specific document

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/brellium-documents-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

brellium-documents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Brellium Audits Documents API
  description: API for base Brellium functionality.
  termsOfService: https://brellium.com/terms
  contact:
    name: Brellium Team
    email: support@brellium.com
    url: http://brellium.com
servers:
- url: https://api.brellium.com/v1
tags:
- name: Documents
paths:
  /documents:
    post:
      summary: Upload a document
      requestBody:
        description: Document to upload.
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                  description: 'PDF, JSON, YML, CSV, or TXT file. Maximum file size: 10 MB.'
                metadata:
                  type: object
                  description: Optional metadata object.
                  additionalProperties: true
              required:
              - file
      responses:
        '201':
          description: Document created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadDocumentResponse'
      security:
      - bearerAuth: []
      tags:
      - Documents
  /documents/upload-url:
    post:
      summary: Get a presigned URL to upload a large document
      requestBody:
        description: Document to upload.
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UploadUrlRequest'
      responses:
        '201':
          description: Upload URL created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadUrlResponse'
      security:
      - bearerAuth: []
      tags:
      - Documents
  /documents/{document_id}:
    get:
      summary: Get information about a specific document
      parameters:
      - name: document_id
        in: path
        required: true
        schema:
          type: string
          description: Document id.
      responses:
        '200':
          description: Document information.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Document'
      security:
      - bearerAuth: []
      tags:
      - Documents
components:
  schemas:
    UploadDocumentResponse:
      type: object
      properties:
        document_id:
          type: string
          description: Document id of uploaded document.
      required:
      - document_id
    UploadUrlResponse:
      type: object
      properties:
        document_id:
          type: string
          description: ID of the uploaded document.
        presigned_url:
          type: string
          description: Short-lived URL to upload the file to.
      required:
      - document_id
      - presigned_url
    Document:
      type: object
      properties:
        document_id:
          type: string
          description: Document id.
        org_id:
          type: string
          description: Organization id.
        filename:
          type: string
          description: Document filename.
        status:
          type: string
          enum:
          - todo
          - in_progress
          - error
          - complete
          description: Processing status of the document.
        handler:
          type: string
          description: Handler used for the document.
        audit_created:
          type: boolean
          description: Flag indicating whether an audit has been created for the document.
        needs_audit:
          type: boolean
          description: Flag indicating whether the document requires an audit (set by handler).
        external_metadata:
          type: object
          additionalProperties: true
          description: JSON metadata associated with the document.
    UploadUrlRequest:
      type: object
      properties:
        filename:
          type: string
          description: Name of the file to upload.
        doc_type:
          type: string
          description: Optional document type.
        metadata:
          type: object
          description: Optional metadata object.
          additionalProperties: true
      required:
      - filename
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT