Camtasia Recordings API

Manage screen recordings

Operations 4

GET /recordings Camtasia List recordings #
POST /recordings Camtasia Upload a recording #
GET /recordings/{recordingId} Camtasia Get a recording #
DELETE /recordings/{recordingId} Camtasia Delete a recording #

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/camtasia-recordings-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

camtasia-recordings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Camtasia Asset Library Assets Recordings API
  description: API for accessing and managing media assets, templates, and libraries within TechSmith Camtasia. Provides programmatic access to browse, search, download, and manage video assets, audio tracks, images, templates, themes, and other media resources used in Camtasia projects.
  version: '1.0'
  contact:
    name: TechSmith Support
    url: https://support.techsmith.com
    email: support@techsmith.com
  termsOfService: https://www.techsmith.com/terms.html
servers:
- url: https://api.techsmith.com/camtasia/v1
  description: TechSmith Camtasia API Production
security:
- bearerAuth: []
tags:
- name: Recordings
  description: Manage screen recordings
paths:
  /recordings:
    get:
      operationId: listRecordings
      summary: Camtasia List recordings
      description: Retrieve a list of screen recordings available for use in projects.
      tags:
      - Recordings
      parameters:
      - $ref: '#/components/parameters/pageOffset'
      - $ref: '#/components/parameters/pageLimit'
      responses:
        '200':
          description: List of recordings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordingListResponse'
        '401':
          description: Unauthorized
    post:
      operationId: uploadRecording
      summary: Camtasia Upload a recording
      description: Upload a screen recording file for use in Camtasia projects.
      tags:
      - Recordings
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - file
              - name
              properties:
                file:
                  type: string
                  format: binary
                  description: The recording file (.trec or video format)
                name:
                  type: string
                  description: Display name for the recording
                description:
                  type: string
                  description: Description of the recording
      responses:
        '201':
          description: Recording uploaded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Recording'
        '400':
          description: Invalid file
        '401':
          description: Unauthorized
  /recordings/{recordingId}:
    get:
      operationId: getRecording
      summary: Camtasia Get a recording
      description: Retrieve details of a specific screen recording.
      tags:
      - Recordings
      parameters:
      - $ref: '#/components/parameters/recordingId'
      responses:
        '200':
          description: Recording details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Recording'
        '401':
          description: Unauthorized
        '404':
          description: Recording not found
    delete:
      operationId: deleteRecording
      summary: Camtasia Delete a recording
      description: Delete a screen recording.
      tags:
      - Recordings
      parameters:
      - $ref: '#/components/parameters/recordingId'
      responses:
        '204':
          description: Recording deleted
        '401':
          description: Unauthorized
        '404':
          description: Recording not found
components:
  parameters:
    pageOffset:
      name: offset
      in: query
      description: Pagination offset
      schema:
        type: integer
        default: 0
        minimum: 0
    pageLimit:
      name: limit
      in: query
      description: Number of results per page
      schema:
        type: integer
        default: 25
        minimum: 1
        maximum: 100
    recordingId:
      name: recordingId
      in: path
      required: true
      description: Unique identifier for the recording
      schema:
        type: string
  schemas:
    RecordingListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Recording'
        total:
          type: integer
          description: Total number of recordings
        offset:
          type: integer
          description: Current pagination offset
        limit:
          type: integer
          description: Number of results per page
    Recording:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the recording
        name:
          type: string
          description: Recording name
        description:
          type: string
          description: Recording description
        format:
          type: string
          description: Recording file format (e.g., trec, mp4)
        duration:
          type: number
          description: Recording duration in seconds
        resolution:
          type: object
          properties:
            width:
              type: integer
              description: Recording width in pixels
            height:
              type: integer
              description: Recording height in pixels
        fileSize:
          type: integer
          description: Recording file size in bytes
        hasWebcam:
          type: boolean
          description: Whether the recording includes webcam footage
        hasAudio:
          type: boolean
          description: Whether the recording includes audio
        hasCursorData:
          type: boolean
          description: Whether the recording includes cursor tracking data
        createdAt:
          type: string
          format: date-time
          description: When the recording was created
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 bearer token from TechSmith account authentication
externalDocs:
  description: Camtasia Support Documentation
  url: https://support.techsmith.com/hc/en-us/categories/camtasia-api