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-templates-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 Templates 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: Templates
description: Manage video project templates
paths:
/templates:
get:
operationId: listTemplates
summary: Camtasia List templates
description: Retrieve a list of available project templates including both built-in and user-created templates.
tags:
- Templates
parameters:
- $ref: '#/components/parameters/searchQuery'
- $ref: '#/components/parameters/pageOffset'
- $ref: '#/components/parameters/pageLimit'
responses:
'200':
description: List of templates
content:
application/json:
schema:
$ref: '#/components/schemas/TemplateListResponse'
'401':
description: Unauthorized
/templates/{templateId}:
get:
operationId: getTemplate
summary: Camtasia Get a template
description: Retrieve detailed information about a specific template.
tags:
- Templates
parameters:
- $ref: '#/components/parameters/templateId'
responses:
'200':
description: Template details
content:
application/json:
schema:
$ref: '#/components/schemas/Template'
'401':
description: Unauthorized
'404':
description: Template not found
components:
schemas:
TemplateListResponse:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/Template'
total:
type: integer
description: Total number of templates
offset:
type: integer
description: Current pagination offset
limit:
type: integer
description: Number of results per page
Template:
type: object
properties:
id:
type: string
description: Unique identifier for the template
name:
type: string
description: Display name of the template
description:
type: string
description: Description of what the template produces
category:
type: string
description: Template category
previewUrl:
type: string
format: uri
description: URL to a preview image or video
downloadUrl:
type: string
format: uri
description: URL to download the template package
resolution:
type: string
description: Target video resolution (e.g., 1920x1080)
frameRate:
type: number
description: Target frame rate
builtIn:
type: boolean
description: Whether this is a TechSmith-provided template
createdAt:
type: string
format: date-time
description: When the template was created
updatedAt:
type: string
format: date-time
description: When the template was last modified
parameters:
pageOffset:
name: offset
in: query
description: Pagination offset
schema:
type: integer
default: 0
minimum: 0
templateId:
name: templateId
in: path
required: true
description: Unique identifier for the template
schema:
type: string
pageLimit:
name: limit
in: query
description: Number of results per page
schema:
type: integer
default: 25
minimum: 1
maximum: 100
searchQuery:
name: q
in: query
description: Search query string
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