One POST. Real results. Auto-stored.

Agent
Templates

Pre-built workflows that execute in one POST.
Describe the task — the agent picks tools, runs them,
stores results in memory.

Try the Agent Read the Docs

How it works

No prompt engineering. No tool selection. Just POST your input and get structured results.

1

Pick a template

Choose from 5 pre-built workflows. Each is tuned for a specific task with the right tools already wired up.

2

POST your input

Send a URL, domain, text, or data blob. The agent orchestrates the tools automatically and runs them in parallel where possible.

3

Get real results

Structured data back in milliseconds. Every run is auto-stored in memory — retrieve anytime with GET /v1/agent/history.

5 Templates

Ready-to-run agent workflows

Each template ships with pre-selected tools, a defined input schema, and automatic memory storage on every run.

Security Auditor id: security-audit

Full security audit of any URL — tech stack, SSL certificate, HTTP headers, response time. Get a complete picture of a site's security posture in one request.

Tools used
sense-url-tech-stack sense-ssl-check sense-url-headers sense-url-response-time
Results auto-stored in memory. Retrieve with GET /v1/agent/history
Try it →
Curl command
bash
curl -X POST https://slopshop.gg/v1/agent/template/security-audit \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'

Content Analyzer id: content-analyzer

Fetch, analyze, and summarize any URL — topics, word count, reading level, sentiment. Turn any web page into structured intelligence.

Tools used
sense-url-content text-word-count text-token-count
Results auto-stored in memory. Retrieve with GET /v1/agent/history
Try it →
Curl command
bash
curl -X POST https://slopshop.gg/v1/agent/template/content-analyzer \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'

Data Processor id: data-processor

Transform, filter, and analyze JSON/CSV data with custom instructions. Describe what you want done in plain language — the agent handles the rest.

Tools used
exec-filter-json exec-sort-json analyze-json-stats
Results auto-stored in memory. Retrieve with GET /v1/agent/history
Try it →
Curl command
bash
curl -X POST https://slopshop.gg/v1/agent/template/data-processor \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"data": [...], "instructions": "..."}'

Domain Recon id: domain-recon

Full domain reconnaissance — DNS records, tech stack, SSL certificate, sitemap, and response time. Everything you need to know about a domain, in one shot.

Tools used
sense-dns-a sense-url-tech-stack sense-ssl-check sense-url-sitemap
Results auto-stored in memory. Retrieve with GET /v1/agent/history
Try it →
Curl command
bash
curl -X POST https://slopshop.gg/v1/agent/template/domain-recon \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain": "example.com"}'

Hash & Verify id: hash-verify

Hash data with SHA-256, SHA-512, and MD5 simultaneously. Get all three digests in one request — useful for integrity verification across systems with different requirements.

Tools used
crypto-hash-sha256 crypto-hash-sha512 crypto-hash-md5
Results auto-stored in memory. Retrieve with GET /v1/agent/history
Try it →
Curl command
bash
curl -X POST https://slopshop.gg/v1/agent/template/hash-verify \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text": "your data here"}'

Build your own

POST /v1/agent/run accepts any natural language task. The agent reads your request, selects tools from 82 categories of available tools, runs them, and returns structured results. No template required — just describe what you need.

POST /v1/agent/run

All results stored

Every agent run — template or freeform — is automatically persisted to your memory store. Retrieve a full history of agent executions anytime. Your agent's past is always accessible. Memory is free.

GET /v1/agent/history
Free to start

Start with
500 free credits

No credit card. No waitlist. Sign up and start running agent templates immediately.

Get your API key →
Also on Slopshop
Playbooks — step-by-step API chaining recipes → Tools — browse all 78 tool categories by category → Docs — full API reference →