Search_Videos
Find and retrieve video search results by specifying a query, language, country, and result count. Easily integrate video discovery into workflows using API-Market MCP Server.
Instructions
Retrieve video search results based on query parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of results to return | |
country | No | Country code | |
q | Yes | Search query | |
search_lang | No | Search language | |
spellcheck | No | Enable spellcheck |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of results to return",
"type": "integer"
},
"country": {
"description": "Country code",
"type": "string"
},
"q": {
"description": "Search query",
"type": "string"
},
"search_lang": {
"description": "Search language",
"type": "string"
},
"spellcheck": {
"description": "Enable spellcheck",
"type": "boolean"
}
},
"required": [
"q"
],
"type": "object"
}