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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/camtasia-downloads-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
openapi: 3.2.0
info:
title: Camtasia Asset Library Assets Downloads 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: Downloads
description: Download asset files
paths:
/assets/{assetId}/download:
get:
operationId: downloadAsset
summary: Camtasia Download an asset file
description: Download the binary file for a specific asset.
tags:
- Downloads
parameters:
- $ref: '#/components/parameters/assetId'
responses:
'200':
description: Asset file binary
content:
application/octet-stream:
schema:
type: string
format: binary
'401':
description: Unauthorized
'404':
description: Asset not found
/templates/{templateId}/download:
get:
operationId: downloadTemplate
summary: Camtasia Download a template
description: Download a template package file.
tags:
- Downloads
parameters:
- $ref: '#/components/parameters/templateId'
responses:
'200':
description: Template package file
content:
application/octet-stream:
schema:
type: string
format: binary
'401':
description: Unauthorized
'404':
description: Template not found
components:
parameters:
templateId:
name: templateId
in: path
required: true
description: Unique identifier for the template
schema:
type: string
assetId:
name: assetId
in: path
required: true
description: Unique identifier for the asset
schema:
type: string
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