CrewAI tools for SnapRender Screenshot API. Lets your CrewAI agents capture website screenshots as PNG, JPEG, WebP, or PDF.
pip install crewai-snaprenderexport SNAPRENDER_API_KEY="sk_live_your_key_here"Get a free key at snap-render.com — 200 screenshots/month, no credit card.
from crewai import Agent, Task, Crew
from crewai_snaprender import SnapRenderScreenshotTool, SnapRenderCacheTool, SnapRenderUsageTool
researcher = Agent(
role="Web Researcher",
goal="Capture and analyze website screenshots",
backstory="You are a visual web analyst.",
tools=[SnapRenderScreenshotTool(), SnapRenderCacheTool(), SnapRenderUsageTool()],
)
task = Task(
description="Take a screenshot of stripe.com in dark mode on iPhone",
expected_output="Screenshot file path and metadata",
agent=researcher,
)
crew = Crew(agents=[researcher], tasks=[task])
result = crew.kickoff()Capture any website as PNG, JPEG, WebP, or PDF with device emulation, dark mode, ad blocking, and more.
Check if a screenshot is cached (free, doesn't count against quota).
Get current month's usage stats.
MIT