Wistia Medias API

The Medias API from Wistia — 8 operation(s) for medias.

Operations 11

GET /medias List media #
POST /medias Upload or import media #
GET /medias/{hashedId} Retrieve media #
PUT /medias/{hashedId} Update media #
DELETE /medias/{hashedId} Delete media #
POST /medias/{hashedId}/copy Copy media #
PUT /medias/{hashedId}/swap Swap media #
PUT /medias/move Move multiple media #
PUT /medias/archive Archive media #
PUT /medias/restore Restore archived media #
PUT /medias/copy Bulk copy media #

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/wistia-medias-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

wistia-medias-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wistia Data Account Medias API
  description: 'REST API providing programmatic access to medias, projects, channels, webinars,

    captions, customizations, tags, folders, accounts, and allowed domains in a

    Wistia account. Returns JSON over HTTPS.

    '
  version: '1.0'
  contact:
    name: Wistia
    url: https://docs.wistia.com/reference/getting-started-with-the-data-api
servers:
- url: https://api.wistia.com/v1
  description: Wistia Data API production server
security:
- bearerAuth: []
- basicAuth: []
tags:
- name: Medias
paths:
  /medias:
    get:
      tags:
      - Medias
      summary: List media
      operationId: listMedia
      responses:
        '200':
          description: OK
    post:
      tags:
      - Medias
      summary: Upload or import media
      operationId: createMedia
      responses:
        '201':
          description: Created
  /medias/{hashedId}:
    parameters:
    - in: path
      name: hashedId
      required: true
      schema:
        type: string
    get:
      tags:
      - Medias
      summary: Retrieve media
      operationId: getMedia
      responses:
        '200':
          description: OK
    put:
      tags:
      - Medias
      summary: Update media
      operationId: updateMedia
      responses:
        '200':
          description: OK
    delete:
      tags:
      - Medias
      summary: Delete media
      operationId: deleteMedia
      responses:
        '204':
          description: No Content
  /medias/{hashedId}/copy:
    parameters:
    - in: path
      name: hashedId
      required: true
      schema:
        type: string
    post:
      tags:
      - Medias
      summary: Copy media
      operationId: copyMedia
      responses:
        '201':
          description: Created
  /medias/{hashedId}/swap:
    parameters:
    - in: path
      name: hashedId
      required: true
      schema:
        type: string
    put:
      tags:
      - Medias
      summary: Swap media
      operationId: swapMedia
      responses:
        '200':
          description: OK
  /medias/move:
    put:
      tags:
      - Medias
      summary: Move multiple media
      operationId: moveMedia
      responses:
        '200':
          description: OK
  /medias/archive:
    put:
      tags:
      - Medias
      summary: Archive media
      operationId: archiveMedia
      responses:
        '200':
          description: OK
  /medias/restore:
    put:
      tags:
      - Medias
      summary: Restore archived media
      operationId: restoreMedia
      responses:
        '200':
          description: OK
  /medias/copy:
    put:
      tags:
      - Medias
      summary: Bulk copy media
      operationId: bulkCopyMedia
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API access token sent as a Bearer token in the Authorization header
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication using the API token as the password