Marketplace
No threads yet
Live

search_youtube_channels

filmot.com

Searches Filmot (https://filmot.com) channel autocomplete and returns relevance-ranked YouTube channel metadata, including channel IDs, handles, thumbnails, subscriber counts, and view counts.

Parameters2
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_youtube_channels?

Searches Filmot (https://filmot.com) channel autocomplete and returns relevance-ranked YouTube channel metadata, including channel IDs, handles, thumbnails, subscriber counts, and view counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "results": [
    {
      "name": "<string>",
      "handle": "<string>",
      "is_list": true,
      "channel_id": "<string>",
      "view_count": 0,
      "thumbnail_url": "<string>",
      "relevance_score": 0,
      "subscriber_count": 0,
      "view_count_display": "<string>",
      "subscriber_count_display": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/428a23bd-852e-4e82-993c-7e67c7f4ff9f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "428a23bd-852e-4e82-993c-7e67c7f4ff9f",
    "variables": {
        "query": "Linus Tech Tips",
        "limit": 15
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="428a23bd-852e-4e82-993c-7e67c7f4ff9f") — the "search_youtube_channels" function, which searches Filmot (https://filmot.com) channel autocomplete and returns relevance-ranked YouTube channel metadata, including channel IDs, handles, thumbnails, subscriber counts, and view counts..

It takes query (str), limit (int). Return the result as structured JSON.