Algebras AI Inc. Storage API

The Storage API from Algebras AI Inc. — 1 operation(s) for storage.

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/algebras-ai-inc-storage-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

algebras-ai-inc-storage-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Algebras Authentication Storage API
  version: '1.0'
servers:
- url: https://platform.algebras.ai/api/v1
- url: http://localhost:3000/api/v1
- url: https://beta.algebras.ai/api/v1
security:
- APIKeyHeader: []
tags:
- name: Storage
paths:
  /storage/upload-url:
    post:
      summary: Get a signed URL for uploading a video file to storage
      description: 'Returns a signed URL that allows the client to upload a video file directly to cloud storage. Supported formats: `video/mp4`, `video/quicktime`, `video/x-matroska`, `video/webm`

        '
      tags:
      - Storage
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - filename
              - type
              - contentType
              - language
              properties:
                filename:
                  type: string
                  example: video.mp4
                  description: The name of the video file to upload.
                type:
                  type: string
                  enum:
                  - video
                  example: video
                  description: File type (must be video).
                contentType:
                  type: string
                  example: video/mp4
                  description: MIME type of the video file.
                language:
                  type: string
                  example: eng
                  description: Language code for the video content (ISO 639-3).
      responses:
        '200':
          description: Successfully generated signed upload URL.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
                  timestamp:
                    type: string
                    format: date-time
                  data:
                    type: object
                    properties:
                      videoId:
                        type: string
                        example: clx123abc456
                        description: Video record ID (only for video uploads)
                      url:
                        type: string
                        example: https://storage.googleapis.com/bucket/video-uploads/lecture_clx123abc456.mp4?X-Goog-Algorithm=GOOG4-RSA-SHA256&X-Goog-Credential=...
                      filePath:
                        type: string
                        example: video-uploads/lecture_clx123abc456.mp4
                      expiresAt:
                        type: string
                        format: date-time
                        description: Upload expiration time (only for video uploads)
        '400':
          description: Invalid input (validation error).
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: error
                  error:
                    type: object
                    properties:
                      message:
                        type: string
                        example: Invalid form data
                      issues:
                        type: array
                        items:
                          type: string
                          example: Unsupported content type for selected type
        '401':
          description: Unauthorized (invalid API key).
        '500':
          description: Internal server error.
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Api-Key
externalDocs:
  url: https://docs.algebras.ai