Marketplace
No threads yet
Live

search_translated_subtitles

filmot.com

Searches Filmot (https://filmot.com) for YouTube subtitle moments matching a phrase in one language and returns the aligned subtitle in another language, with video IDs, language tracks, timestamps, and links.

Parameters4
Runs13
Updated10d ago
Degraded13 runs · 84.6% 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_translated_subtitles?

Searches Filmot (https://filmot.com) for YouTube subtitle moments matching a phrase in one language and returns the aligned subtitle in another language, with video IDs, language tracks, timestamps, and links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, source_language, target_language, limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "results": [
    {
      "video_id": "<string>",
      "timestamp": "<string>",
      "youtube_url": "<string>",
      "start_seconds": 0,
      "filmot_info_url": "<string>",
      "source_language": "<string>",
      "source_subtitle": "<string>",
      "target_language": "<string>",
      "translated_subtitle": "<string>"
    }
  ],
  "search_url": "<string>",
  "available_count": 0,
  "source_language": "<string>",
  "target_language": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0edb0e4b-27f0-4f54-9667-45005947cc94/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0edb0e4b-27f0-4f54-9667-45005947cc94",
    "variables": {
        "query": "hello world",
        "source_language": "en",
        "target_language": "es",
        "limit": 20
    }
}'

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="0edb0e4b-27f0-4f54-9667-45005947cc94") — the "search_translated_subtitles" function, which searches Filmot (https://filmot.com) for YouTube subtitle moments matching a phrase in one language and returns the aligned subtitle in another language, with video IDs, language tracks, timestamps, and links..

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