Adaptive ML Chunked Upload API

Upload large files in chunks

Operations 4

POST /api/v1/upload/init Initialize Chunked Upload #
POST /api/v1/upload/part Upload Part #
DELETE /api/v1/upload/abort Abort Chunked Upload #
POST /api/v1/upload/status Get Upload Session 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/adaptive-ml-chunked-upload-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

adaptive-ml-chunked-upload-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: concorde artifacts::rest Chunked Upload API
  description: Upload large files in chunks
  license:
    name: UNLICENSED
    identifier: UNLICENSED
  version: 0.1.0
servers:
- url: https://your-adaptive-deployment/api/v1
  description: Base URL reconciled from apis.yml
tags:
- name: Chunked Upload
  description: Upload large files in chunks
paths:
  /api/v1/upload/init:
    post:
      tags:
      - Chunked Upload
      summary: Initialize Chunked Upload
      description: Start a new chunked upload session for large files. Returns a session ID to be used for uploading parts.
      operationId: Initialize Chunked Upload
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InitChunkedUploadRequest'
        required: true
      responses:
        '200':
          description: Upload session created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InitChunkedUploadResponse'
  /api/v1/upload/part:
    post:
      tags:
      - Chunked Upload
      summary: Upload Part
      description: Upload a single part (chunk) of a file to an existing upload session.
      operationId: Upload Part
      parameters:
      - name: session_id
        in: query
        description: Upload session identifier
        required: true
        schema:
          type: string
      - name: part_number
        in: query
        description: Part number (1-indexed)
        required: true
        schema:
          type: integer
          format: int32
          minimum: 0
      requestBody:
        description: Binary chunk data
        content:
          application/octet-stream:
            schema:
              type: array
              items:
                type: integer
                format: int32
                minimum: 0
        required: true
      responses:
        '200':
          description: Part uploaded successfully
  /api/v1/upload/abort:
    delete:
      tags:
      - Chunked Upload
      summary: Abort Chunked Upload
      description: Cancel an ongoing chunked upload session and clean up any uploaded parts.
      operationId: Abort Chunked Upload
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AbortChunkedUploadRequest'
        required: true
      responses:
        '200':
          description: Upload aborted successfully
  /api/v1/upload/status:
    post:
      tags:
      - Chunked Upload
      summary: Get Upload Session Status
      description: Cancel an ongoing chunked upload session and clean up any uploaded parts.
      operationId: Get Upload Session Status
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetUploadSessionStatusRequest'
        required: true
      responses:
        '200':
          description: Upload session status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetUploadSessionStatusResponse'
components:
  schemas:
    InitChunkedUploadResponse:
      type: object
      required:
      - session_id
      properties:
        session_id:
          type: string
          description: Unique identifier for the upload session
    InitChunkedUploadRequest:
      type: object
      required:
      - total_parts_count
      properties:
        content_type:
          type:
          - string
          - 'null'
          description: MIME type of the file being uploaded
        metadata:
          type:
          - object
          - 'null'
          description: Custom metadata to attach to the upload session
          additionalProperties:
            type: string
          propertyNames:
            type: string
        total_parts_count:
          type: integer
          format: int32
          description: Total number of parts that will be uploaded
          minimum: 1
    AbortChunkedUploadRequest:
      type: object
      required:
      - session_id
      properties:
        session_id:
          type: string
          description: Upload session identifier to abort
    GetUploadSessionStatusRequest:
      type: object
      required:
      - session_id
      properties:
        session_id:
          type: string
    GetUploadSessionStatusResponse:
      type: object
      required:
      - completed_parts
      - total_parts_count
      properties:
        completed_parts:
          type: array
          items:
            type: integer
            format: int32
            minimum: 0
        total_parts_count:
          type: integer
          format: int32
          minimum: 0