fetch

Fetch HTML or JSON from static web pages with redirect and proxy control.

Updated May 3, 2026
One-click install
npx skills add https://github.com/marktantongco/remotion-video-pro --skill fetch-marktantongco
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fetch
Source: https://github.com/marktantongco/remotion-video-pro/tree/main/.agents/skills/fetch
Command: npx skills add https://github.com/marktantongco/remotion-video-pro --skill fetch-marktantongco

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the process of fetching web content, enabling quick access to HTML or JSON from static pages, and simplifying tasks like checking HTTP status codes or headers.

Core Features & Use Cases

  • Static Content Retrieval: Fetch HTML or JSON from static web pages.
  • HTTP Status and Headers Inspection: Check if a page is responding and inspect headers.
  • Proxies and Redirect Control: Enable proxy support for scraping or bypassing geo-restrictions, and control HTTP redirects.
  • Use Case: When you need to scrape data from a website but don't require JavaScript rendering, use the Fetch API to quickly retrieve the content.

Quick Start

Fetch the content of the URL 'https://example.com' using the fetch skill.

Frequently Asked Questions about fetch

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I retrieve static HTML content from a web page without rendering JavaScript?

Static HTML content retrieval without JavaScript rendering is done by fetching the web page directly without a full browser session. This approach quickly retrieves HTML or JSON from static pages, making it ideal for tasks like simple data scraping and API testing.

Can I check HTTP status codes and headers when fetching web content?

Checking HTTP status codes and headers is supported during web content fetching. This allows you to verify if a page is responding correctly and inspect the headers returned by the server, simplifying tasks like API testing and monitoring page availability.

Does fetching web content support proxy usage and HTTP redirect control?

Proxy usage and HTTP redirect control are fully supported when fetching web content. This enables proxy support for scraping or bypassing geo-restrictions, and provides control over HTTP redirects to manage how requests navigate through different URLs.

What is the best way to scrape data from a website that does not require JavaScript rendering?

Scraping data from a website without JavaScript rendering is best handled by fetching the content directly without a full browser session. This method retrieves static content quickly and efficiently, bypassing the overhead of loading a complete browser environment.

Do I need an API key to fetch web content and test HTTP requests?

An API key is required for authentication to fetch web content and test HTTP requests. This ensures secure access to the fetching functionality when retrieving static content, inspecting HTTP status codes, or controlling redirects through proxies.

When should I not use a lightweight fetch approach for web scraping?

A lightweight fetch approach for web scraping should not be used when the target web page requires JavaScript rendering to display its content. This method is designed for static content and will not execute client-side scripts to load dynamic data.