Install
openclaw skills install @dataify-server/dataify-instagram-reelsCollect Instagram Reels data and return results
openclaw skills install @dataify-server/dataify-instagram-reelsSubmit Instagram Reel information collection jobs through Dataify Builder. This skill is a guided wrapper for three collection modes:
| Mode | Collector ID | Use For |
|---|---|---|
| Detail URL | ins_reel_by-url | Collecting one or more Instagram Reels by Reel detail URL. |
| List URL | ins_allreel_by-url | Collecting Reels from an Instagram list/profile URL with count and date filters. |
| Website URL | ins_reel_by-listurl | Collecting Reels from an Instagram website/list URL with count and date filters. |
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 without asking the user to re-enter the token.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")
detail-url, allreel-url, or listurl.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 Reel information by detail URL | detail-url |
| Collect Reel information by list URL | allreel-url |
| Collect Reel information by website URL | listurl |
Ask: "Which collection mode do you want to use: detail-url, allreel-url, or listurl?"
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.file_name as a Builder form field.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=instagram.comspider_errors=truespider_id=ins_reel_by-urlspider_id=ins_allreel_by-urlspider_id=ins_reel_by-listurlfile_name={{TasksID}}spider_parameters must be a JSON string array.For stable execution, prefer scripts/submit_dataify_instagram_reels.py with Python 3.6 or newer instead of rewriting the Builder flow.
Detail URL mode:
python3 ".\scripts\submit_dataify_instagram_reels.py" --mode detail-url --url "https://www.instagram.com/reel/C5Rdyj_q7YN/"
List URL mode:
python3 ".\scripts\submit_dataify_instagram_reels.py" --mode allreel-url --url "https://www.instagram.com/billieeilish" --num-of-posts "10" --posts-to-not-include "DP861NijuwE" --start-date "01-28-2025" --end-date "01-28-2026"
Website URL mode:
python3 ".\scripts\submit_dataify_instagram_reels.py" --mode listurl --url "https://www.instagram.com/espn" --num-of-posts "10" --posts-to-not-include "DP861NijuwE" --start-date "01-28-2025" --end-date "01-28-2026"
To override the saved environment token or file name:
python3 ".\scripts\submit_dataify_instagram_reels.py" --mode detail-url --url "https://www.instagram.com/reel/C5Rdyj_q7YN/" --file-name "{{TasksID}}"
To submit multiple detail URL groups:
python3 ".\scripts\submit_dataify_instagram_reels.py" --mode detail-url --params-json '[{"url":"https://www.instagram.com/reel/C5Rdyj_q7YN/"},{"url":"https://www.instagram.com/reel/C5Rdyj_q7YN/"}]'
To submit multiple list URL groups:
python3 ".\scripts\submit_dataify_instagram_reels.py" --mode allreel-url --params-json '[{"url":"https://www.instagram.com/billieeilish","num_of_posts":"10","posts_to_not_include":"DP861NijuwE","start_date":"01-28-2025","end_date":"01-28-2026"},{"url":"https://www.instagram.com/billieeilish","num_of_posts":"10","posts_to_not_include":"DP861NijuwE","start_date":"01-28-2025","end_date":"01-28-2026"}]'
To submit multiple website URL groups:
python3 ".\scripts\submit_dataify_instagram_reels.py" --mode listurl --params-json '[{"url":"https://www.instagram.com/espn","num_of_posts":"10","posts_to_not_include":"DP861NijuwE","start_date":"01-28-2025","end_date":"01-28-2026"},{"url":"https://www.instagram.com/espn","num_of_posts":"10","posts_to_not_include":"DP861NijuwE","start_date":"01-28-2025","end_date":"01-28-2026"}]'
The script prints a JSON summary with mode, spider_id, task_id, status, parameters, file_name and message.
Unsupported mode means the mode must be detail-url, allreel-url, or listurl.
url cannot be empty means the Instagram URL is missing.
url must start with https://www.instagram.com/ means the URL is outside the allowed Instagram domain.
num_of_posts must be an integer greater than or equal to 0 means the Reel count is invalid.
start_date must use mm-dd-yyyy format means the start date format is invalid.
end_date must use mm-dd-yyyy format means the end date format is invalid.
start_date must be on or before end_date means the date range is invalid.
File name cannot be empty means no usable file_name was provided.
Necessary parameters is empty! usually means the Builder request was not submitted as form fields, spider_parameters was not a JSON string array, or the selected mode's object is missing required fields.
Missing task_id usually means the authorization header, token, spider_name, selected spider_id, or spider_parameters is wrong.
file_name inside spider_parameters.https://www.instagram.com/.API TOKEN and DATAIFY_API_TOKEN when referring to authentication.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_instagram_reels.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.