Capcut Video Downloader avatar

Capcut Video Downloader

Pricing

from $2.99 / 1,000 results

Go to Apify Store
Capcut Video Downloader

Capcut Video Downloader

🎬 Capcut Video Downloader lets you quickly save and download CapCut videos in high quality. Fast, easy, and user-friendly—ideal for creators and editors. 🚀 Download your favorites hassle-free today! ✅

Pricing

from $2.99 / 1,000 results

Rating

0.0

(0)

Developer

SolidScraper

SolidScraper

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

3 days ago

Last modified

Share

CapCut Video Downloader 🎬

CapCut Video Downloader scrapes metadata and video URLs from CapCut templates so you can quickly turn template pages into downloadable video resources for your workflows. If you’re looking for a CapCut video downloader, download CapCut videos, or a CapCut downloader online alternative, this actor helps you collect structured template details at scale—saving you hours of manual work.

Whether you’re a marketer, content researcher, or data analyst building a library of template videos, this CapCut downloader streamlines the process by pulling the key info you need from public web pages.


✅ Why choose CapCut Video Downloader?

FeatureBenefit
Template URL scrapingExtracts template metadata and video URLs from CapCut template links in one run
Structured outputReturns a consistent JSON structure with fields like title, author, thumbnail, duration, and medias
Reliability-focused fetchingUses built-in request resilience and returns an error result when something fails for a URL
Proxy-ready setupIncludes proxy support so you can run the actor more reliably on larger batches
Batch processingProcess multiple CapCut template URLs by providing them in the urls input array
Automation-friendlyOutputs results immediately in a dataset via Actor.push_data, ready for downstream use

🔍 Key features

  • 🎯 Template metadata extraction: Captures template title, author, thumbnail, and duration from the template page HTML
  • 📷 Thumbnails included: Saves the template image from the og:image metadata into thumbnail
  • 🧾 Clean media URL packaging: Collects video URLs into medias entries with url, quality, extension, and type
  • 🕒 Duration in milliseconds: Parses time strings and returns duration as milliseconds (or 0 if not found)
  • 🌐 Multiple quality entries: Builds medias with quality options like hd_no_watermark, no_watermark, and watermark
  • 🔄 Resilient batch runs: Continues processing when a URL fails and records the error in the results
  • 🧠 Input-ready for bulk use: Accepts an array of CapCut template URLs for “CapCut video save” workflows
  • 💾 Dataset output: Pushes all results to the dataset (so you can export JSON/CSV afterward)

🧩 Input

Provide input via an input.json file. Example structure:

{
"urls": [
"https://www.capcut.com/templates/7372561043429559553"
]
}

Input Fields

FieldRequiredDescription
urlsYesA list of CapCut template URLs to scrape. The actor will use each URL to extract metadata and video URLs.

📦 Output

The actor saves results in JSON format (a JSON array), pushing the output to Apify via Actor.push_data.

Example output (representative):

[
{
"url": "https://www.capcut.com/templates/7372561043429559553",
"result": {
"url": "https://www.capcut.com/templates/7372561043429559553",
"source": "capcut",
"id": "7372561043429559553",
"unique_id": "123456789012",
"author": "Some Author Name",
"title": "Template Title\nOptional Subtitle",
"thumbnail": "https://example.com/thumbnail.jpg",
"duration": 120000,
"medias": [
{
"url": "https://example.com/video.mp4",
"quality": "hd_no_watermark",
"extension": "mp4",
"type": "video"
},
{
"url": "https://example.com/video.mp4",
"quality": "no_watermark",
"extension": "mp4",
"type": "video"
},
{
"url": "https://example.com/video.mp4",
"quality": "watermark",
"extension": "mp4",
"type": "video"
}
],
"type": "multiple",
"error": false,
"time_end": 555
}
}
]

Output Fields

FieldTypeDescription
urlstringThe input URL (the one associated with this result entry)
resultobjectThe extracted template data container
result.urlstringThe URL stored inside the result object (same as the template URL)
result.sourcestringData source label; currently always capcut
result.idstringTemplate numeric ID extracted from the URL
result.unique_idstringA generated 12-digit numeric unique identifier for the result
result.authorstringAuthor name extracted from the page (empty string if not found)
result.titlestringTemplate title (optionally combined with subtitle text if present)
result.thumbnailstringThumbnail image URL from og:image (empty string if not found)
result.durationnumberDuration in milliseconds (0 if not found)
result.mediasarrayList of media objects containing video URL(s) and quality labels
result.medias[].urlstringVideo URL for that media entry
result.medias[].qualitystringQuality label for the media entry (hd_no_watermark, no_watermark, watermark)
result.medias[].extensionstringFile extension for the media URL (set to mp4)
result.medias[].typestringMedia type (set to video)
result.typestringMedia grouping type (set to multiple)
result.errorbooleanExtraction error flag (set to false in the successful extraction structure)
result.time_endnumberA static value included in the result structure (555)

If a URL fails during fetching/extraction, the actor appends an error entry in the results list shaped like:

  • {"url": <original url>, "error": <error string>}

🚀 How to use CapCut Video Downloader (via Apify Console)

  1. Open Apify Console
    Log in at https://console.apify.com and open the Actors tab.

  2. Find the actor
    Search for CapCut Video Downloader and open the actor details page.

  3. Go to the INPUT section
    Use the built-in form or upload an input.json file.

  4. Paste your template URLs
    In urls, add one or more CapCut template links (for example, CapCut downloader online use cases like saving CapCut template video URLs).

  5. Proxy (optional, if shown in your console)
    The actor includes proxy support for more reliable scraping on larger batches.

  6. Run the actor
    Click Run to start. You’ll see logs indicating which URL is being fetched.

  7. Review progress and outcomes
    The actor processes each URL in the batch. If a particular URL errors, it records the error alongside that URL rather than stopping the whole run.

  8. Open the dataset output & export
    After completion, open the OUTPUT dataset created by this run and export the JSON results (and CSV if your workflow supports it).

No coding required — get accurate results in minutes with CapCut Video Downloader. 🎉


⚙️ Advanced features & SEO optimization

  • 🧠 Engineered for CapCut video downloader workflows: Built specifically to help you download CapCut videos by extracting template metadata and video URLs into a structured JSON result
  • 🔗 Input URL normalization: The actor normalizes template URL paths (so metadata extraction works consistently for template pages)
  • 🧾 Media packaging for “CapCut video without watermark” style workflows: Video URLs are returned inside medias with explicit quality labels like hd_no_watermark and no_watermark
  • 🛡️ Reliability-oriented execution: Uses resilient request handling and continues processing the rest of your urls list even when one fails
  • 📊 Practical data completeness: Includes title, author, thumbnail, and duration, plus a ready-to-use medias array for downstream automation

🎯 Best use cases

  • 📈 Content researchers building template libraries: Batch-collect CapCut template video metadata and video URLs so you can compare styles and performance themes across templates
  • 🧑‍💻 Marketers preparing outreach assets: Download CapCut template video links from public templates to assemble campaign-ready reference packs
  • 🗂️ Data analysts organizing CapCut downloader online datasets: Store structured fields like author, duration, and thumbnail for analysis pipelines
  • 🎬 Creators saving template inspiration: Use a CapCut video save workflow to capture template titles, authors, and media URLs quickly
  • 🔁 Automation developers integrating into pipelines: Feed template results into your own jobs (e.g., tagging, deduplication, indexing) using the JSON dataset output
  • 🧪 Brand safety and compliance teams (internal use): Maintain internal records of which template sources and media assets were referenced, with traceable url and id fields
  • 🌍 Cross-device teams: Use results as building blocks for “CapCut video downloader for Android”, “CapCut video downloader for iPhone”, or PC workflows where your team needs consistent metadata

🧰 Technical specifications

Supported Input Formats

  • urls: an array of CapCut template URL strings

Proxy Support

  • ✅ Proxy-ready fetching (configured via actor runtime/proxy configuration in Apify Console)

Retry Mechanism

  • ✅ Includes resilient fetching behavior suitable for batch runs (failed URLs are captured with an error entry)

Dataset Structure

  • ✅ Outputs a JSON array pushed via Actor.push_data(..., charged_event_name="result")

Rate Limits & Performance

  • ✅ Processes URLs in a loop and includes a short delay between requests (behavior varies by network and target response)

Limitations

  • ❌ Extraction depends on publicly available page metadata being present and parseable
  • ❌ If a URL fetch fails, the actor returns an error entry for that specific URL rather than a full successful result object

❓ FAQ

✅ What does CapCut Video Downloader extract from each template URL?

It extracts template metadata and video URL information from each CapCut template page, including fields like title, author, thumbnail, duration, and a medias array containing media entries with quality, extension (mp4), and type (video).

✅ Can I use CapCut Video Downloader to download CapCut videos in bulk?

Yes. Provide multiple template links in the urls array input, and the actor will process them as a batch and push all results into the dataset.

✅ What if one of my CapCut template URLs fails?

The actor logs the error and continues. For failed entries, it appends an object in the results list shaped like {"url": <url>, "error": <error string>}.

✅ Do I need to write code to run CapCut Video Downloader?

No. You can run it directly in Apify Console by supplying the urls input via the form or by uploading an input.json file.

💻 How do I integrate the results into my own pipeline?

Use the dataset output: the actor pushes a JSON array containing objects with url and result (including medias). You can then import/export the dataset to your tools, CRM, or analytics workflow.

⚖️ Is this actor meant for private or authenticated content?

No. It scrapes metadata and video URL information from publicly available sources. It does not target private, authenticated, or password-protected pages.

🔁 Does the actor support different “CapCut downloader online” quality labels?

Yes. In the output, video URLs are packaged under medias with quality labels such as hd_no_watermark, no_watermark, and watermark.


🤝 Support & feature requests

Want to improve CapCut Video Downloader? Share your feedback or feature requests by emailing dataforleads@gmail.com.

💡 Feature Requests: Common enhancements include adding more template fields, improving output formatting for downstream tools, or expanding export convenience for bulk “CapCut reel downloader” and template library use cases.

We actively review feedback and use it to shape the roadmap for CapCut video downloader improvements. 🚀


Final thoughts on CapCut Video Downloader

If you need a practical, dataset-ready way to extract CapCut template metadata and video URLs at scale, CapCut Video Downloader is designed to help.
This SEO-friendly CapCut video downloader setup makes your next “download CapCut videos” workflow faster from the very first run.


Disclaimer

This tool accesses publicly accessible sources only. It does not access private profiles, authenticated data, or password-protected pages.

You’re responsible for ensuring your use complies with applicable laws and platform rules (including GDPR/CCPA where relevant) and for following any relevant terms of service, privacy requirements, and anti-abuse policies.

If you need data removal, contact dataforleads@gmail.com.

Use CapCut Video Downloader responsibly, ethically, and for legitimate purposes only.