# Minion Fetch

> Use when the user asks to fetch or retrieve information from a URL.

- Skill: `fboldo/minion-fetch` (Agent Skill)
- Install (CLI): `npx skillmds@latest add fboldo/minion-fetch`
- Raw SKILL.md: https://api.skillmd.com/api/skills/fboldo/minion-fetch/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: fboldo (https://skillmd.com/u/fboldo)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/fboldo/minion-fetch

---


## Common interface

When the user asks to fetch or retrieve information from a URL, use this skill to perform the fetch operation. This can be used for various purposes, such as retrieving data, validating information, or exploring APIs.

```bash
npx minion-fetch <URL> --headers "Header-Name: Header-Value" --method GET --attempts 3
```

## Using plugins

### Fetching and applying jq

When the user asks to fetch or retrieve information from a URL and process it with `jq`, use this skill to perform the fetch operation and apply the `jq` filter to the response.

```bash
npx minion-fetch --jq <URL> --apply '.data | map(select(.active == true))'
```

### Fetching infered JSON Schema

When the user asks to fetch or retrieve information from a URL, use this skill to infer the JSON schema of the response. This can help in understanding the structure of the data and how to process it further.

```bash
npx minion-fetch --json-schema <URL>
```

### Fetching HTML converted to Markdown

When the user asks to fetch or retrieve information from a URL, use this skill to convert HTML content to Markdown format. This can be useful for better readability and integration with Markdown-based systems.

```bash
npx minion-fetch --md <URL>
```

