# View Imgur

> View an imgur image by downloading it with curl and reading the local file. Use whenever an i.imgur.com URL is shared, because WebFetch cannot load imgur URLs directly.

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

---


## Viewing Imgur Images

WebFetch cannot load imgur URLs — imgur blocks that access path.

To view an imgur image, download it with curl and read the local file:

```
curl -L -o /tmp/image.png "https://i.imgur.com/example.png"
```

Then read `/tmp/image.png` directly using the Read tool.

This applies to all `i.imgur.com` image links.

