Everything you need to know. No fluff.
Capture and inspect HTTP requests. Perfect for debugging webhooks from Stripe, GitHub, etc.
https://devtools-api.shawnunderwood.com/hooks/your-slugcurl -X POST https://devtools-api.shawnunderwood.com/hooks/your-slug \
-H "Content-Type: application/json" \
-d '{"event": "test", "data": {"foo": "bar"}}'All methods work (GET, POST, PUT, etc). Headers, body, query params - all captured.
Know when your scheduled jobs stop running. Set an expected interval, ping us when it runs.
curl https://devtools-api.shawnunderwood.com/ping/your-slug# Run backup every hour, ping when done 0 * * * * /scripts/backup.sh && curl -s https://devtools-api.shawnunderwood.com/ping/backup-job
Grace period lets your job run a bit late without alerting. Status shows OK, Late, or Down.
We ping your endpoints on a schedule. If they go down, you know immediately.
Send structured logs from anywhere. View and filter them here.
curl -X POST https://devtools-api.shawnunderwood.com/log/your-slug \
-H "Content-Type: application/json" \
-d '{
"level": "info",
"message": "User signed up",
"data": {"userId": 123, "email": "[email protected]"}
}'debug, info, warn, error, fatal
Boolean feature toggles with a public API. Control features without redeploying.
dark_mode, new_checkout)curl https://devtools-api.shawnunderwood.com/flags/your-project-slug
# Response:
{"dark_mode": true, "new_checkout": false, "beta_features": true}curl https://devtools-api.shawnunderwood.com/flags/your-project-slug/dark_mode
# Response:
{"key": "dark_mode", "enabled": true}No auth required for reading flags. Keep it simple.
Store secrets encrypted. Fetch them with an API key. Great for CI/CD pipelines.
curl https://devtools-api.shawnunderwood.com/secrets/your-vault-slug \
-H "X-Api-Key: dvt_your_api_key"
# Response:
{"DATABASE_URL": "postgres://...", "API_KEY": "sk_live_..."}curl https://devtools-api.shawnunderwood.com/secrets/your-vault-slug/DATABASE_URL \
-H "X-Api-Key: dvt_your_api_key"
# Response:
{"key": "DATABASE_URL", "value": "postgres://..."}Security: Secrets are encrypted at rest with AES-256. API keys can be regenerated anytime. Values are masked in the UI.
All API requests go to:
https://devtools-api.shawnunderwood.comReady to start?
Create Free Account