DevDeck Request

Technical API testing suite for modern microservices. Test, monitor, and orchestrate complex API workflows with a unified, high-performance interface.

🛠️ API First
DevDeck Request is built for teams that prioritize API design. Use it as a standalone tool or integrate it into your CI/CD pipelines.

Getting Started

To start using DevDeck Request, you can create a new project and import your existing API collections from Postman, Insomnia, or direct OpenAPI specs.

Importing Collections

Click the "Import" button in the dashboard. Our engine will automatically generate requests for every endpoint and suggest tests based on the schema.

# Import via CLI
devdeck import ./openapi.yaml --target request

Collections

Organize your requests into collections and folders. Share them with your team to ensure everyone is testing with the same configuration.

💡 Pro Tip
Use the "Run Collection" feature to execute all requests in a folder sequentially, perfect for smoke testing.

Orchestration

DevDeck Request allows you to build complex API workflows (Chaining) where data from one response is passed to the next request.

{
  "name": "Auth Flow",
  "steps": [
    { "id": "login", "method": "POST", "url": "/auth/login" },
    { "id": "getProfile", "method": "GET", "url": "/user/{{login.body.token}}" }
  ]
}

Environments

Switch between dev, staging, and production environments seamlessly. Variables like base URLs and API keys are automatically swapped based on your selection.