vhiz + Claude Code
vhiz.dev/install/claude-code
Your agent can see web pages. Give Claude Code a vhiz token and it gains visual output — capture any URL, render any HTML, get a shareable link back.
What it looks like
❯ capture the hacker news front page for me
I'll capture that for you.
● Bash curl -s https://vhiz.dev -H "Authorization: Bearer ..." \
-d '{"method":"create-capture","params":{"url":"news.ycombinator.com"},"id":1}'
Done. Here's the capture:
Page: https://vhiz.dev/capture_a1b2c3d4e5f6a7b8
Artifact: https://vhiz.dev/capture_a1b2c3d4e5f6a7b8/capture.png
Cost: 1 credit (9 remaining)
❯ render this HTML as a PNG
● Bash curl -s https://vhiz.dev -H "Authorization: Bearer ..." \
-d '{"method":"create-render","params":{"html":"<div style=\"padding:40px\">...</div>"},"id":2}'
Page: https://vhiz.dev/render_f8e7d6c5b4a39281
Artifact: https://vhiz.dev/render_f8e7d6c5b4a39281/1.png
Cost: 1 credit (8 remaining)
Setup
- Get a token — ask Claude to run this, or run it yourself:
curl -s https://vhiz.dev \
-d '{"method":"create-token","id":1}'
You'll get vhiz_... and 50 free credits. No signup.
- Give Claude the token. Either paste it when Claude needs it, or set it in your environment:
export VHIZ_TOKEN="vhiz_..."
- Ask Claude to capture or render anything. It figures out the curl call on its own.
What Claude can do with vhiz
With a token, Claude Code can:
· Capture any URL — screenshot a live page, get a permanent link to share or inspect
· Render HTML/CSS — turn generated markup into a high-fidelity image, iterate up to 50 versions
· Read the result — Claude can download and analyze the captured image in the same conversation
· Self-check — call check-token to see remaining credits before making a call