skills.vishalvoidskills/vishalvoid
Technical & DevelopmentBeginner

fetch

HTTP request API for static content downloading.

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/browserbase/skills --skill fetch

Overview

What This Skill Does

Downloads raw HTML/JSON page source directly without launching a full browser session, minimizing resource overhead.

Application

When to use this Skill

Documentation

Show Skills.md file

Browserbase Fetch API

Fetch a page and return its content, headers, and metadata — no browser session required.

Prerequisites

Get your API key from: https://browserbase.com/settings

export BROWSERBASE_API_KEY="your_api_key"

When to Use Fetch vs Browser

Use Case Fetch API Browser Skill
Static page content Yes Overkill
Check HTTP status/headers Yes No
JavaScript-rendered pages No Yes
Form interactions No Yes
Page behind bot detection Possible (with proxies) Yes (Browserbase Identity + Verified browser)
Simple scraping Yes Overkill
Speed Fast Slower

Rule of thumb: Use Fetch for simple HTTP requests where you don't need JavaScript execution. Use the Browser skill when you need to interact with or render the page.

Lines 1 - 25 of 146

Recommendations

Explore other random skills

All skillsMy patterns