A lightweight, file-based tool to make requests to your API
With Sendex, your requests are stored in YAML files in your project's source code. This means whenever your backend changes, your request config files can change with it, keeping everything consistent.

How does Sendex work?
Create a Sendex file
args: - id: 1 # specify 1 as defaultmethod: GETendpoint: http://jsonplaceholder.typicode.com/todos/{id} # we can use 'id' hereheaders: - Content-Type: application/json - Accept: application/jsonallow-headers: # only show these headers in the output - Content-Type
Then run the request
> sendex run get-todo.yml id=5200 OKContent-Type: application/json; charset=utf-8{ "userId": 1, "id": 5, "title": "laboriosam mollitia et enim quasi adipisci quia provident illum", "completed": false}
A lightweight API endpoint testing tool
© Sendex 2025