canonical: https://jentic.com/apis/twilio.com/twilio---video

# Twilio - Video

This is the public Twilio REST API. The API exposes 35 endpoints secured with basic authentication.

## For AI agents

Programmatically returns a single composition resource identified by a composition sid., delete a recording composition resource identified by a composition sid.. Covers 35 operations with basic authentication.

## Scope

Does not handle payments, communications, or crm - use for media and content only.

## Capabilities

- Returns a single Composition resource identified by a Composition SID.
- Delete a Recording Composition resource identified by a Composition SID.
- List of all Recording compositions.
- Query and filter Twilio - Video records by parameters
- Monitor Twilio - Video operational status and events

## Use cases

### Media and Content Operations

Use the Twilio - Video to perform media operations programmatically. The API provides 35 endpoints covering core functionality including returns a single composition resource identified by a composition sid., delete a recording composition resource identified by a composition sid., list of all recording compositions..

Example prompt: Call GET /v1/Compositions/{Sid} to returns a single composition resource identified by a composition sid.

### Automated VideoV1Anonymize Management

Automate videov1anonymize operations by combining multiple Twilio - Video endpoints. Agents can delete a recording composition resource identified by a composition sid. and then list of all recording compositions. in a single workflow.

Example prompt: Call DELETE /v1/Compositions/{Sid} to delete a recording composition resource identified by a composition sid., then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Twilio - Video endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle basic tokens manually.

Example prompt: Search Jentic for 'returns a single composition resource identified by a composition sid.', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | /v1/Compositions/{Sid} | Returns a single Composition resource identified by a Composition SID. |
| DELETE | /v1/Compositions/{Sid} | Delete a Recording Composition resource identified by a Composition SID. |
| GET | /v1/Compositions | List of all Recording compositions. |
| GET | /v1/CompositionHooks/{Sid} | Returns a single CompositionHook resource identified by a CompositionHook SID. |
| DELETE | /v1/CompositionHooks/{Sid} | Delete a Recording CompositionHook resource identified by a `CompositionHook SID |
| GET | /v1/CompositionHooks | List of all Recording CompositionHook resources. |
| GET | /v1/Recordings/{Sid} | Returns a single Recording resource identified by a Recording SID. |
| DELETE | /v1/Recordings/{Sid} | Delete a Recording resource identified by a Recording SID. |

## Key resources

- **VideoV1Anonymize** — Operations related to VideoV1Anonymize
- **VideoV1Composition** — Operations related to VideoV1Composition
- **VideoV1CompositionHook** — Operations related to VideoV1CompositionHook
- **VideoV1CompositionSettings** — Operations related to VideoV1CompositionSettings
- **VideoV1Media** — Operations related to VideoV1Media

## Why Jentic

- **Setup:** Wiring Twilio Video by hand means setting up HTTP basic auth with your account SID and auth token against the video.twilio.com host and handling retries yourself. Through Jentic you install once, import Twilio Video from the API Directory, store the account SID and auth token once, and your agent calls it.
- **Permission scoping:** Twilio Video puts the composition, hook, and recording Sids in the URL path (/v1/Compositions/{Sid}), so a rule can pin your agent to one composition or recording. You choose the operations it may call, so destructive ones like deleting a recording are not included unless you add them.
- **Credential handling:** Your Twilio account SID and auth token are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'fetch a composition' or 'list recordings', and Jentic returns the matching Twilio Video operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Cloudinary** — Alternative media API
- **Mux** — Alternative media API

## FAQ

### What authentication does the Twilio - Video use?

The Twilio - Video uses HTTP Basic authentication with username and password. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.

### Can I returns a single composition resource identified by a composition sid. with the Twilio - Video?

Yes. Use the GET /v1/Compositions/{Sid} endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the Twilio - Video?

Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.

### How do I returns a single composition resource identified by a composition sid. through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'returns a single composition resource identified by a composition sid.'. Jentic returns the matching Twilio - Video operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Twilio - Video have?

The Twilio - Video exposes 35 endpoints covering videov1anonymize, videov1composition, videov1compositionhook operations.

### Can I limit what my agent is allowed to do with the Twilio Video API?

Yes. Jentic One is self-hosted by you, so your own rules decide which Twilio Video operations and credentials the agent may use. Because Twilio Video puts the composition, hook, and recording Sids in the URL path such as /v1/Compositions/{Sid}, you can pin the agent to a single composition or recording. You also choose the operations it can call, so destructive ones like DELETE /v1/Recordings/{Sid} stay off unless you add them.
