SEO Use Case

Temporary webhook response tool for fast integration tests

dryapi helps you validate webhook and callback flows by serving controlled responses from temporary URLs. This is useful for partner testing, QA reproductions, and CI checks.

What you can control

Status code

Return 200, 400, 500, or any custom status.

Headers

Set content-type and custom header values.

Response body

Serve JSON or text payloads for test scenarios.

Example

curl -s -X POST https://dryapi.io/responses \
  -H "Content-Type: application/json" \
  -d '{"status":500,"body":{"error":"upstream timeout"}}'

Start Testing