Install
openclaw skills install @dataify-server/dataify-youtube-video-postCollect YouTube Video Post data and return results
openclaw skills install @dataify-server/dataify-youtube-video-postSubmit YouTube video post collection jobs through Dataify Builder and continue through final-result retrieval. This skill is a guided wrapper for six collection modes:
| Mode | Collector ID | Use For |
|---|---|---|
| URL | youtube_video-post_by-url | Collecting video posts from a YouTube channel Videos URL. |
| Search Filters | youtube_video-post_by-search-filters | Searching video posts by keyword plus filters. |
| Hashtag | youtube_video-post_by-hashtag | Collecting video posts by hashtag. |
| Podcast URL | youtube_video-post_by-podcast-url | Collecting video posts from a YouTube podcast or playlist URL. |
| Keyword | youtube_video-post_by-keyword | Collecting video posts by keyword. |
| Explore | youtube_video-post_by-explore | Collecting video posts from a YouTube Explore URL. |
After submission, continue monitoring the returned task_id and return the final result by default.
Use DATAIFY_API_TOKEN as the long-term saved token name.
DATAIFY_API_TOKEN is saved locally, use it.API TOKEN in user-facing instructions. Prefer the environment variable name DATAIFY_API_TOKEN for saved local use.PowerShell examples for saving the token for the current session:
$env:DATAIFY_API_TOKEN = "YOUR_DATAIFY_API_TOKEN"
For a persistent user-level variable on Windows:
[Environment]::SetEnvironmentVariable("DATAIFY_API_TOKEN", "YOUR_DATAIFY_API_TOKEN", "User")
Label and Value columns.spider_id.data.task_id from the Builder response and read data.status or status when present.When the user invokes this skill, first show this Markdown table and ask them to choose one mode:
| Label | Value |
|---|---|
| Collect video posts by channel Videos URL | url |
| Collect video posts by search filters | search_filters |
| Collect video posts by hashtag | hashtag |
| Collect video posts by podcast URL | podcast_url |
| Collect video posts by keyword | keyword |
| Collect video posts by Explore URL | explore |
Ask: "Which collection mode do you want to use?"
Do not submit a Builder request until the mode is clear.
file_name defaults to {{TasksID}}.file_name, submit the user-provided value.file_name cannot be empty.https://www.youtube.com.0.spider_parameters as a JSON string containing an array of one or more objects.For detailed mode schemas and advanced fields, read references/modes-and-parameters.md only when needed.
Use form fields rather than hand-built URL-encoded strings.
https://scraperapi.dataify.com/builder?platform=1POSTBearer DATAIFY_API_TOKENapplication/x-www-form-urlencodedspider_name=youtube.comspider_errors=truespider_id:
youtube_video-post_by-urlyoutube_video-post_by-search-filtersyoutube_video-post_by-hashtagyoutube_video-post_by-podcast-urlyoutube_video-post_by-keywordyoutube_video-post_by-explorefile_name={{TasksID}}spider_parameters must be a JSON string, not a raw object.For stable execution, prefer scripts/submit_dataify_youtube_video_post.py with Python 3.6 or newer instead of rewriting the Builder flow.
python3 ".\scripts\submit_dataify_youtube_video_post.py" --mode keyword --keyword "top videos"
If python3 is not available, use the local Python 3 command for that machine, such as python. The script checks the runtime version and tells the user to use Python 3.6 or newer if the active interpreter is too old.
To submit multiple groups, pass a JSON array for the selected mode:
python3 ".\scripts\submit_dataify_youtube_video_post.py" --mode hashtag --params-json '[{"hashtag":"shopping","num_of_posts":"10"},{"hashtag":"music","num_of_posts":"25"}]'
The script prints a JSON summary with mode, spider_id, task_id, status, parameters, file_name and message.
Missing Dataify API TOKEN means DATAIFY_API_TOKEN is not set in the environment. Tell the user to get an API TOKEN from Dataify.
Unsupported mode means the mode must be url, search_filters, hashtag, podcast_url, keyword, or explore.
URL must use https://www.youtube.com means the URL is non-compliant.
Unsupported order_by, Unsupported all_tabs, or other unsupported dropdown messages mean the value must be one of that field's allowed values.
File name cannot be empty means no usable file_name was provided.
Missing task_id usually means the authorization header, token, spider_name, or selected spider_id is wrong.
The default deliverable is the collected result, not only a task_id.
task_id.$dataify-task-operations and monitor the same task ID.
--timeout 1800 for media downloads or clearly high-volume, multi-page, or multi-input collections.--no-wait behavior.python3 scripts/submit_dataify_youtube_video_post.py --help
export for macOS/Linux shells, $env: for Windows PowerShell, or set for Windows Command Prompt). Show other platforms or persistent setup only when detection is ambiguous or the user asks.DATAIFY_API_TOKEN is present; never print its value. If verification succeeds, continue the original task without asking the user to repeat it..env unless the execution path explicitly loads it, and ensure .env is ignored by version control.