get_videos
Retrieve a list of videos with filters for ID, title, or language, and control results using pagination with skip and limit parameters.
Instructions
Get a list of videos with optional filtering and pagination.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No | Filter videos by ID | |
language | No | Filter videos by language | |
limit | No | Maximum number of videos to return | |
skip | No | Number of videos to skip | |
title | No | Filter videos by title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Filter videos by ID",
"type": "string"
},
"language": {
"description": "Filter videos by language",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of videos to return",
"type": "number"
},
"skip": {
"default": 0,
"description": "Number of videos to skip",
"type": "number"
},
"title": {
"description": "Filter videos by title",
"type": "string"
}
},
"type": "object"
}