http-get-request

Retrieve data from a URL via HTTP GET with error handling.

15|8|Updated Feb 9, 2026
One-click install
npx skills add https://github.com/AstorYH/PASB --skill http-get-request
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: http-get-request
Source: https://github.com/AstorYH/PASB/tree/main/nanobot/skills/http-get-request
Command: npx skills add https://github.com/AstorYH/PASB --skill http-get-request

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill retrieves data from a specified URL, automating the process of fetching information from the web.

Core Features & Use Cases

  • HTTP GET Requests: Makes GET requests to any valid URL.
  • Error Handling: Gracefully handles connection errors and non-successful HTTP status codes.
  • Use Case: Quickly fetch the latest news headlines from an RSS feed or retrieve product information from a public API.

Quick Start

Use the http-get-request skill to retrieve the content from the URL https://api.example.com/data.

Frequently Asked Questions about http-get-request

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

FAQPage Schema
How do I fetch data from a URL using an HTTP GET request?

To fetch data from a URL using an HTTP GET request, you provide the target address to retrieve web content or API data, receiving the raw response body as the output on a successful connection.

What happens when an HTTP GET request fails or returns a non-2xx status code?

When an HTTP GET request fails due to connection errors or non-2xx HTTP status codes, the system gracefully handles the exception and outputs a descriptive error message instead of the response body.

Can I use this to retrieve content from a public API?

Yes, you can use this to retrieve content from a public API. It is specifically designed for fetching API data and web content by making standard GET requests to any valid URL.

Do I need to configure any dependencies to retrieve web content?

No, you do not need to configure any dependencies to retrieve web content. The Skill operates independently without requiring external components or libraries to execute HTTP GET requests.

What is the best way to get the latest news headlines from an RSS feed?

The best way to get the latest news headlines from an RSS feed is to perform an HTTP GET request targeting the feed URL, which retrieves the raw data for immediate access.