Dredd is a CLI tool that validates your API's backend implementation against its description document.
Dredd is a command-line tool designed to verify that your HTTP API's actual behavior matches its documentation. It consumes API description formats like OpenAPI (2 & 3) or API Blueprint and runs tests against your backend, comparing live responses to what's described. Developers can use `npm install -g dredd` to get started, then `dredd init` to configure tests, often leveraging language-specific 'hooks' for setup and teardown.
Dredd is a CLI tool that validates your API's backend implementation against its description document.
Teams building and documenting HTTP APIs who need to ensure their backend implementation consistently matches its specification.