Resemble AI subpackage_secureUploads API

The subpackage_secureUploads API from Resemble AI — 1 operation(s) for subpackage_secureuploads.

Operations 1

POST /secure_uploads Upload media securely #

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/resemble-ai-subpackage-secureuploads-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

resemble-ai-subpackage-secureuploads-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Secure Uploads API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_secureUploads
paths:
  /secure_uploads:
    post:
      operationId: create-secure-upload
      summary: Upload media securely
      description: 'Upload a media file and receive a short-lived token that can be passed to

        downstream endpoints (such as `/detect` and `/intelligence`) in place of a

        public URL. The returned token is a JWT that expires 1 hour after issuance.


        Keeping uploads private avoids exposing source media on the open internet and

        means you do not need to host files yourself for jobs that only need the API

        to read them once.

        '
      tags:
      - subpackage_secureUploads
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Upload accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Secure_Uploads_createSecureUpload_Response_200'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                  description: The media file to upload (audio, image, or video).
              required:
              - file
components:
  schemas:
    Secure_Uploads_createSecureUpload_Response_200:
      type: object
      properties:
        success:
          type: boolean
        token:
          type: string
          description: JWT referencing the uploaded file. Valid for 1 hour. Pass this value as `media_token` on downstream requests.
      title: Secure Uploads_createSecureUpload_Response_200
    Error:
      type: object
      properties:
        success:
          type: boolean
        error:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
        message:
          type: string
      title: Error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api