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-categories-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 Categories 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: Categories
description: Browse asset categories
paths:
/categories:
get:
operationId: listCategories
summary: Camtasia List asset categories
description: Retrieve the hierarchy of asset categories used to organize media assets in the library.
tags:
- Categories
responses:
'200':
description: List of categories
content:
application/json:
schema:
$ref: '#/components/schemas/CategoryListResponse'
'401':
description: Unauthorized
/categories/{categoryId}:
get:
operationId: getCategory
summary: Camtasia Get a category
description: Retrieve details of a specific asset category.
tags:
- Categories
parameters:
- $ref: '#/components/parameters/categoryId'
responses:
'200':
description: Category details
content:
application/json:
schema:
$ref: '#/components/schemas/Category'
'401':
description: Unauthorized
'404':
description: Category not found
components:
schemas:
Category:
type: object
properties:
id:
type: string
description: Unique identifier for the category
name:
type: string
description: Display name of the category
description:
type: string
description: Description of the category
parentId:
type: string
description: Parent category ID for hierarchical organization
assetCount:
type: integer
description: Number of assets in this category
CategoryListResponse:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/Category'
parameters:
categoryId:
name: categoryId
in: query
description: Filter by category identifier
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