All Short Videos Scraper
Pricing
from $4.76 / 1,000 results
All Short Videos Scraper
All Short Videos Scraper is a short video search scraper that turns one keyword into canonical public video links from two independent short-video search indexes, deduplicated into one 12-field Dataset contract with titles, thumbnails, sources, creators, durations, view text and recency text.
Pricing
from $4.76 / 1,000 results
Rating
0.0
(0)
Developer
AgentX
Maintained by CommunityActor stats
1
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
All Short Videos Scraper is a short video search scraper that turns one keyword into canonical public video links and returns titles, thumbnails, sources, creators, durations, and the display metrics each result card carries. It reads two independent short-video search indexes in one run, removes duplicate canonical URLs across both, and publishes one Dataset row per distinct video destination.
- Two independent short-video indexes in one run: results from both are merged and deduplicated by canonical URL before anything is saved.
- Twelve fields on every row: each saved item carries the same 12 keys, including which index found it and its rank there, with unavailable card values left as
null. - Direct public destinations: every row carries the final public video page URL, not a search-result redirect.
- Returned-row billing: one Result event is charged when a row is saved to the default Dataset, and only then.
The smallest useful run asks each index for one video and costs at most $0.02268 on the FREE tier: $0.01 for Actor Start plus $0.00634 for each of up to two Results.
Why Choose All Short Videos Scraper
- Short-video surfaces only keeps ordinary web listings, article results, and page links out of the Dataset, so a row is always a playable public video destination rather than a page that mentions one.
- Two indexes, each with the full budget widens coverage:
max_resultsis what each index may return, the second index contributes destinations the first never surfaced, and a link both return is saved and charged once because it is one row. - Canonical URL deduplication normalizes each destination before comparison, so the same video reached through a different result card, page, or parameter set does not publish twice.
- Card-level context preserved returns the displayed title, thumbnail, creator, duration, source label, view text, and publication text whenever the result card carries them, and leaves
nullwhere the card shows no value. - One stable export shape keeps the same 12 keys on every item across every keyword and every run, which is what makes run-to-run joins and diffs possible without a normalization step.
Use this Actor for public short-video discovery: every row is a public destination link together with the metadata its result card displayed — title, thumbnail, creator, duration, source label, view text and publication text — drawn from what the two indexes currently rank for the keyword. Media files, transcripts and per-platform engagement counts are the job of the platform-specific Actors listed under Related.
Quick Start Guide
1. Configure
The Input tab arrives prefilled with the keyword cooking and max_results: 1 — a scenario that returns one video from each index and proves the Actor runs for about two cents. Replace keyword with your own topic, phrase, creator name, or public video identifier, raise max_results to the number of video links you want from each index, and leave platforms empty to search both indexes or pick the one you want.
2. Run
Click Start. The Actor works through every selected index page by page until each has supplied max_results distinct canonical URLs or runs out of links the run has not already seen. A run that searches both indexes can therefore return up to twice max_results; a single-index run returns up to max_results.
3. Collect
Open the default Dataset to review the saved links and card metadata. Export as JSON, CSV, Excel, XML, RSS, or any other format the Apify Dataset export supports, or read the rows through the Dataset API.
Input Parameters
The Actor takes three inputs: a required search value, an optional index selection, and a required result limit.
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
keyword | string | Yes | One topic, phrase, creator name, or public video identifier to search, 1 to 200 characters. Surrounding whitespace is trimmed; empty and multi-line values are rejected. | cooking |
platforms | array of strings | No | Which search indexes to query: google, bing, or both. An empty or omitted array searches both. | ["bing"] |
max_results | integer | Yes | Maximum number of unique video links to save from each selected index, so a run that searches both returns up to twice this. Minimum 1, no maximum. | 25 |
{"keyword": "cooking","max_results": 25}
The delivered count is source-dependent and never exceeds twice max_results on a two-index run. A narrow public identifier can return a single row, while a broad topic keeps producing new destinations until each selected index has supplied the requested number or runs out of links the run has not already saved. Setting platforms to ["google"] or ["bing"] gives that one index the whole budget, so the run returns up to max_results rows from it. A full run at max_results: 100 across both indexes typically finishes in two to four minutes.
Output Data Schema
Each Dataset row is one distinct public video destination, described by the same 12 fields on every run: search_engine, search_index, source, title, url, thumbnail_url, duration, channel_name, views_text, published_text, processor, and processed_at.
| Field | Type | Description |
|---|---|---|
search_engine | string or null | Which search engine returned the card: Bing or Google. |
search_index | integer or null | The card's rank in the sequence its engine returned, starting at 1 per engine. Numbers can skip where the other engine returned the same video first. |
source | string or null | Video website or publisher platform the card credits, such as YouTube or TikTok. |
title | string or null | Video title displayed on the result card. |
url | string or null | Canonical public video page URL. |
thumbnail_url | string or null | Thumbnail image URL supplied with the card. |
duration | string or null | Displayed duration text, such as 0:39. |
channel_name | string or null | Displayed creator, channel, or publisher name. |
views_text | string or null | Rounded view-count text when the card carries one. |
published_text | string or null | Relative publication text when the card carries one. |
processor | string or null | Store URL of the Actor that produced the row. |
processed_at | string or null | UTC timestamp for when the row was produced. |
The item below is one real row from a cooking run; every other row has exactly this shape.
{"search_engine": "Bing","search_index": 1,"source": "YouTube","title": "Healthy Full Meals Lunch #food #foodie #cookingchannel #cookingvideo #chanduaduge #recipe #cooking","url": "https://www.youtube.com/watch?v=yFRQPhQswMI","thumbnail_url": "https://th.bing.com/th/id/OVP.I0kgEY-wfHbAHhFBeCwfigEkII?w=262&h=354&c=8&rs=1","duration": "0:34","channel_name": "Chandu Aduge","views_text": "284.7K views","published_text": "1 month ago","processor": "https://apify.com/agentx/all-short-videos-scraper","processed_at": "2026-09-05T03:37:19+00:00"}
Values a result card does not display stay null; the Actor never infers a missing view count, date, or thumbnail. The processor value carries a publisher referral parameter in real output, which is left off the sample above. The same rows are available through the Dataset API and every standard Apify export format.
Integration Examples
Call the Actor as agentx/all-short-videos-scraper from API clients, automation platforms, and MCP-compatible agents.
Actor ID
hlelyaj9OFhqrCqfG
The name form agentx/all-short-videos-scraper (or agentx~all-short-videos-scraper inside a URL path) is accepted everywhere the ID is.
HTTP
Start the run, poll it to completion, then read the Dataset. The start call returns data.id and data.defaultDatasetId immediately.
# 1. start the runcurl -X POST "https://api.apify.com/v2/acts/agentx~all-short-videos-scraper/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"keyword":"cooking","max_results":25}'# 2. poll until "status" is "SUCCEEDED" (or register an ACTOR.RUN.SUCCEEDED webhook instead)curl "https://api.apify.com/v2/actor-runs/RUN_ID?token=$APIFY_TOKEN"# 3. read the rowscurl "https://api.apify.com/v2/datasets/DATASET_ID/items?token=$APIFY_TOKEN"
Replace RUN_ID with the data.id value from step 1 and DATASET_ID with its data.defaultDatasetId. A run-sync-get-dataset-items call is usable only as a quick manual test with a very small max_results: Apify closes a synchronous connection after 300 seconds without aborting the run, a client-side timeout never stops a run that is already billing, and every client or gateway retry starts another billed run.
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("agentx/all-short-videos-scraper").start(run_input={"keyword": "cooking", "max_results": 25})client.run(run["id"]).wait_for_finish()items = list(client.dataset(run["defaultDatasetId"]).iterate_items())
JavaScript
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });const run = await client.actor('agentx/all-short-videos-scraper').start({keyword: 'cooking',max_results: 25,});await client.run(run.id).waitForFinish();const { items } = await client.dataset(run.defaultDatasetId).listItems();
Make.com
Add the Apify Run an Actor module, enter the Actor ID hlelyaj9OFhqrCqfG, and paste {"keyword":"cooking","max_results":25} as the input. Follow it with Get Dataset Items using the run's defaultDatasetId.
n8n
Send {"keyword":"cooking","max_results":25} to POST /v2/acts/hlelyaj9OFhqrCqfG/runs with an HTTP Request node, wait for the ACTOR.RUN.SUCCEEDED webhook or poll GET /v2/actor-runs/{runId}, then request GET /v2/datasets/{defaultDatasetId}/items in a second node.
MCP
Expose the Actor through Apify's MCP integration, select agentx/all-short-videos-scraper, and pass keyword and max_results — plus platforms when one index is wanted — as the tool arguments, the same object the HTTP example sends.
Pricing
Each saved row costs $0.00634 on the FREE tier and each run adds one $0.01 Actor Start, so the smallest useful run — max_results: 1, one video from each index — totals at most $0.02268.
| Event or tier | Price | Billing unit |
|---|---|---|
| Actor Start | $0.01 | Once per run; Apify counts one start event per allocated GB, minimum one |
| Result — FREE | $0.00634 | Per row saved to the default Dataset |
| Result — BRONZE | $0.00571 | Per row saved to the default Dataset |
| Result — SILVER | $0.00507 | Per row saved to the default Dataset |
| Result — GOLD | $0.00476 | Per row saved to the default Dataset |
| Result — PLATINUM | $0.00476 | Per row saved to the default Dataset |
| Result — DIAMOND | $0.00476 | Per row saved to the default Dataset |
The Actor runs at 512 MB, so Actor Start is charged once per run at $0.01 — Apify counts one start event per GB with a minimum of one. max_results is per index, so a run bills the rows both indexes actually return: the max_results: 25 scenario used throughout this page costs up to $0.327 on FREE — $0.01 + (50 × $0.00634) when both indexes fill their budget, which a broad keyword usually does — and about $0.1685 on a narrow one where only the first index has that many. A run that saves 100 rows costs $0.644, and a single-index run (platforms: ["bing"] or ["google"]) bills at most max_results rows plus the start. Because a run pays Actor Start once regardless of how many rows it saves, collecting many links in one larger run is cheaper than splitting the same links across many small runs. Delivered totals vary by keyword and by what each index currently holds, and current prices can change.
Use Cases
- Creative research: search a campaign theme, then compare
title,thumbnail_url,source, anddurationacross the returned destinations to see which formats the topic is actually being told in. - Trend monitoring: schedule the same keyword on a fixed cadence, store
urlandprocessed_at, and diff the canonical link sets between runs to see what entered and what dropped out. - Creator discovery: search a brand, product, or niche phrase and group the rows by
channel_nameandsourceto build a shortlist of accounts publishing on that topic. - Content-gap analysis: compare
views_textandpublished_textacross a keyword set to find topics where recent short videos are outperforming older ones. - Editorial sourcing: export links, titles, and thumbnails into a review queue so an editor can pick which public videos to cite or embed before anything is published.
- Pipeline seeding: feed the
urlcolumn into a platform-specific Actor when the workflow also needs transcripts, comments, engagement counts, or downloadable media.
Alternatives
Typing the keyword into a search box by hand is the right choice for a single interactive lookup where you want to watch the results and do not need a file afterwards. It stops working as soon as you need pagination, a structured export, deduplicated canonical URLs, or the same query repeated on a schedule and compared.
The destination platforms publish their own official documentation for the format this Actor discovers — YouTube's Shorts help page describes what qualifies as a short vertical video — and each platform's own in-app search is better when you already know which platform you care about and want that platform's native filters, engagement counts, and account context. This Actor answers the earlier question: which public short videos exist on a topic, across platforms, in one exportable list.
A general web-search scraper fits better when the job also needs ordinary web listings, ads, sitelinks, and broad result-page features rather than short-video surfaces alone. A single-platform short-video tool fits better when the work requires one platform's channel, country, hashtag, or engagement data; this Actor's rows carry what the cross-platform search card displays, which is the discovery layer those tools start from.
Limits and Troubleshooting
- No rows returned → the keyword may have no visible short-video matches, or an index may be temporarily unavailable. A keyword with genuinely no matches finishes as a successful run with an empty Dataset; a run where a selected index failed and nothing was saved finishes with a failed status, so a Schedule or webhook can retry it. Retry with a broader public phrase; a very narrow identifier legitimately returns nothing.
- Fewer rows than
max_results→ delivered volume is capped by what the indexes currently hold for that keyword. Each selected index is walked page by page until it fills its own budget or runs out of new links, so the delivered count is whatever the indexes rank for that phrase. - Different totals between runs → search indexes, ranking, and video availability change continuously. Use
urlas the stable comparison key and keepprocessed_atso run-to-run differences stay interpretable. - Empty
views_textorpublished_text→ those are card display values, not computed metrics, andBingrows carry them far more often thanGoogleones. Treatnullas "the card did not show it", never as zero. - Empty
thumbnail_urlon some rows →Bingrows carry a thumbnail andGooglerows usually do not. Filter onsearch_enginewhen your workflow needs the image. Theurlvalue is always present on a saved row even when the thumbnail is not. - Videos that look duplicated → exact canonical destinations are deduplicated, but a repost and an original upload are different public URLs and stay separate rows.
- A destination that no longer opens → search results can outlive a removed, private, region-limited, or renamed video page. Re-run the keyword and validate important links before publishing them.
For a reproducible failure, open an Actor Issue with the run ID, the exact input, what you expected, and one affected result URL.
Trust and Reliability
- Apify-native delivery: runs, logs, statuses, Datasets, exports, schedules, webhooks, API calls, and MCP workflows all use Apify's managed Actor platform.
- Output-backed billing: a Result event is charged only for a row successfully saved to the default Dataset, so a candidate that never becomes a row is never billed.
- Documented 12-field contract: every published row carries the same 12 keys, including explicit
nullwhere a result card omitted a value. - Source-values-only policy: titles, links, thumbnails, creators, durations, and displayed metrics are taken from the result cards as shown, and nothing missing is estimated or filled in.
- Independent index failure: if one of the two indexes stops answering mid-run, the other continues, and whatever the failed one already delivered is kept.
Legal and Compliance
Public data only. The Actor searches public result surfaces and returns publicly displayed video-card data and destination links — exactly what an anonymous visitor to those surfaces sees, and nothing behind a login or an audience setting.
Privacy responsibility. Decide whether storing, combining, or redistributing creator names, thumbnails, URLs, and displayed metrics is appropriate for your purpose, your jurisdiction, and your retention policy before you build on the output.
Platform terms. You are responsible for complying with the terms of every search surface and destination platform involved, plus copyright, database, and data-protection rules. Keep run frequency reasonable and do not use results for unlawful profiling, harassment, or rights infringement.
Frequently Asked Questions
How do I search short videos by keyword?
Put one topic, phrase, creator name, or public video identifier into keyword, set max_results to how many links you want, and start the Actor. It works through the first index page by page, adds the second index's short-video surface, and publishes one row per distinct canonical video URL until the limit is reached or both indexes are exhausted.
Is there a free short video search API?
The Actor is callable through Apify's standard API and may fit inside the platform credits included with your Apify plan, but the Actor itself is pay-per-event: $0.01 per run start plus your tier's Result price for each saved row, starting at $0.00634 on FREE.
Why does one keyword return two different levels of card detail?
The search_engine value tells you which engine produced the row, and the two describe their cards differently. Bing rows consistently supply thumbnails, view text, and relative publication dates; Google rows return titles, durations, creators, and links but usually omit the display metrics. Both produce the same 12 keys, so the difference shows up as null values rather than as a different row shape. search_index is each engine's own rank for the row, so sorting on search_engine then search_index restores the order either engine returned.
Can I schedule runs to monitor short-video results over time?
Yes. Point an Apify Schedule at the same input, then compare url and processed_at across the resulting Datasets, or send each completed run to a webhook that writes the rows into your own store.
What is the maximum number of video links for one keyword?
max_results accepts any integer from 1 upward with no ceiling and applies to each index separately, so a run can return up to twice it — but the delivered count is whatever each index actually holds for that keyword. A broad topic fills both budgets; a narrow phrase can leave either index short. Treat max_results as a per-index budget, not a promise.
What do I get for each video the Actor finds?
A public destination URL and the result card's metadata: title, thumbnail, creator, duration, source, view text and publication text, plus which engine found it and its rank there. Pass a returned url to a suitable video Actor when your lawful workflow also needs the media file, a transcript, or platform-specific engagement data.
Which video sites can show up in the results?
Rows commonly resolve to YouTube, TikTok, Instagram, Facebook, Vimeo, and Dailymotion destinations, and the exact mix for any given search is whatever the keyword currently ranks on each index.
Can I search only one index?
Yes. Set platforms to ["google"] or ["bing"] and the run queries that index alone, giving it the whole max_results budget, so the run returns up to max_results rows. Leave platforms empty to search both. Filter the rows on source afterwards when the workflow needs one destination platform, such as TikTok links only.
Why is a video I can see in a browser missing from the Dataset?
A search index only returns what it currently ranks for that phrase, and ranking differs from personalized in-app results. Broaden the keyword, raise max_results, or search the creator name directly. The indexes rank public, unrestricted videos, so a private, age-restricted or region-limited upload stays outside the results by construction.
Related AgentX Actors
AgentX publishes focused Store Actors across several categories; the three closest choices to this Actor are listed first, followed by the full catalog.
Closest to this Actor:
- Instagram Reels Scraper — take a discovered Instagram destination further into structured Reels records for a known account.
- TikTok Creator API — turn a
channel_namefound here into public account-level context for that creator. - Video Transcript — convert a discovered public video into timestamped speech text.
Business and Market Intelligence
- All Web Search Scraper — multi-engine web search across ten independent indexes
- Google Keyword Trends — Google Trends keyword interest, compared five at a time
- Google Trends Scraper — Google Trends trending searches
- Google Maps Store Scraper — Google Maps business listings
- LinkedIn Company Lookup — LinkedIn company records
- LinkedIn Profile Lookup — LinkedIn profile records
- Weather Forecast API — forecast and historical weather data
Jobs and Hiring
- All Jobs Scraper — multi-platform job listings
- Bayt Jobs Scraper — Bayt job listings
- Glassdoor Jobs Scraper — Glassdoor job listings
- Indeed Jobs Scraper — Indeed job listings
- JobStreet Company Profile — JobStreet employer records
- Jooble Jobs Scraper — Jooble job listings
- LinkedIn Jobs Scraper — LinkedIn job listings
- Naukri Jobs Scraper — Naukri job listings
- Talent Jobs Scraper — Talent.com job listings
- ZipRecruiter Jobs Scraper — ZipRecruiter job listings
Social Media
- All Forums Thread Scraper — multi-platform forum and Q&A threads
- Instagram Creator Scraper — Instagram creator profiles
- Instagram Reels Scraper — Instagram Reels metadata
- Instagram Trending Scraper — Instagram trending content
- Medium Scraper — Medium articles
- Medium Profile Scraper — Medium author profiles
- Reddit Profile Scraper — Reddit user profiles
- Reddit Viral Scraper — Reddit viral posts
- SubReddit Info Scraper — subreddit metadata
- Subreddit Members Scraper — subreddit member lists
- Subreddit Posts Scraper — subreddit post feeds
- Telegram Chat Scraper — Telegram chat messages
- Telegram Info Scraper — Telegram channel metadata
- Telegram Member Adder — Telegram group membership management
- Telegram Member Scraper — Telegram group members
- Telegram Private Group Scraper — private Telegram group data
- TikTok Creator API — TikTok creator profiles
- TikTok User Lookup — TikTok account records
- X Twitter Community API — X community data
- X Twitter Profile Lookup — X profile records
- YouTube Creator Email Scraper — YouTube creator contact data
Video, Transcripts and Downloads
- All Video Scraper — multi-platform video metadata
- All Image Scraper — image search and download across five engines
- All Short Drama Downloader — short-drama episodes from fifteen official apps
- Video Transcript — multi-platform transcripts
- Video Captions Downloader — caption files
- Video to Social Post — video repurposed into social copy
- YouTube Transcript — YouTube transcripts
- TikTok Transcript — TikTok transcripts
- X Twitter Transcript — X video transcripts
- Facebook Transcript — Facebook video transcripts
- Bilibili Transcript — Bilibili transcripts
- Dailymotion Transcript — Dailymotion transcripts
- Rutube Transcript — Rutube transcripts
- Loom Transcript — Loom transcripts
- Wistia Transcript — Wistia transcripts
- Instagram Reels Downloader — Reels downloads
- Kick Clip Downloader — Kick clip downloads
- Linkedin Video Downloader — LinkedIn video downloads
- Pinterest Video Downloader — Pinterest video downloads
- Reddit Video Downloader — Reddit video downloads
- Snapchat Video Downloader — Snapchat video downloads
- TED Talk Downloader — TED talk downloads
- TikTok Live Downloader — TikTok live downloads
- Twitch VOD Downloader — Twitch VOD downloads
- Zoom Recording Downloader — Zoom recording downloads
E-Commerce and Retail
- All Shopping Scraper — multi-platform product data
- AliExpress Product Scraper — AliExpress products
- Amazon Storefront Scraper — Amazon Brand Store pages
- Bol Product Scraper — Bol.com products
- eBay Seller Leads API — eBay seller records
- Hepsiburada Product Scraper — Hepsiburada products
- Kakaku Product Scraper — Kakaku.com products
- Rakuten Product Scraper — Rakuten products
Classifieds and Automotive
- All Vehicle Scraper — multi-platform vehicle listings
- AutoTrader Vehicle Search — AutoTrader US listings
- AutoTrader UK Vehicle Search — AutoTrader UK listings
Real Estate
- All Property Scraper — multi-platform property listings
- Homes Property Scraper — Homes.com listings
- MagicBricks Property Scraper — MagicBricks listings
- NoBroker Property Scraper — NoBroker listings
- Property24 Property Scraper — Property24 listings
- Realtor Property Scraper — Realtor.com listings
- Zillow Property Scraper — Zillow listings
Support and Community
Ask about keyword coverage, the 12-field Dataset contract, or wiring this Actor into an API or MCP workflow in the AgentX community on Telegram; for a reproducible bug, open an Issue with the run ID and the exact input.
AgentX is an Arcyton brand — arcyton.com.
Last Updated: September 5, 2026