A simple REST API client CLI utility
Project description
Api Rester
A lightweight command-line REST client for testing APIs without the overhead of GUI applications like Postman or Insomnia.
Installation
Api Rester can be installed through pip package manager with the following command
pip install api-rester
Features
- API Calls execution with request and response stored on JSON files
- Support for all major HTTP methods (GET, POST, PUT, DELETE, HEAD, PATCH)
- Query parameters support
- Environment variables replacement on request and response files
- Alternative request and response files
- Verbose logging mode for debugging
- Get environment variables from .env file automatically
Coming in the future
- Network error handling
- Persistent cookies support
Basic Usage
- Create a request file, by default the application recognizes the file as
request.json
{
"protocol": "https", // required (http or https)
"host": "api.example.com", // required
"path": "/api/v1/users", // required
"method": "POST", // required (GET, POST, PUT, DELETE, HEAD, PATCH)
"headers": {
"Content-Type": "application/json"
},
"body": {
"name": "John Doe",
"email": "john.doe@example.com"
}
}
- Execute the request
api-rester call
- The application will execute the request and save the response in the
response.jsonfile
{
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"id": 59,
"name": "John Doe",
"email": "john.doe@example.com"
}
}
Custom Files
The application supports alternative files to be used as a request and response.
For example, if you have a file called example-file.json and want to receive the response in a different file called example-response.json, you can use it as a request by running the following command:
api-rester call --request-file example-file.json --response-file example-response.json
The application will execute the request and save the response in the example-response.json file.
Environment Variables
The application supports environment variables to be replaced in the request.json file.
For example, if you have an environment variable called API_KEY, you can replace it in the request.json file with ${{API_KEY}}.
{
// ...
"path": "/api/v1/users/${{API_KEY}}"
// ...
}
When you execute the request, the application will replace the ${{API_KEY}} with the value of the API_KEY environment variable.
API_KEY="1234567890" api-rester call
The application will replace the ${{API_KEY}} with the value of the API_KEY environment variable and execute the request.
{
// ...
"path": "/api/v1/users/1234567890"
// ...
}
Example
- Create a request file called
example-file.json
{
"protocol": "https",
"host": "api.example.com",
"path": "/api/v1/users",
"method": "POST",
"headers": {
"Content-Type": "application/json",
"Authorization": "Bearer ${{API_KEY}}"
},
"body": {
"name": "John Doe",
"email": "john.doe@example.com"
}
}
- Execute the request
API_KEY=1234567890 api-rester call --request-file example-file.json --response-file example-response.json
- The application will execute the request and save the response in the
example-response.jsonfile
{
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"id": 59,
"name": "John Doe",
"email": "john.doe@example.com"
}
}
Template generation
Api rester can also generate a template of what it expects as a request with this command:
api-rester template
Which you can specify the path with --filename or --f
api-rester template --filename custom_place.json
It will generate this file:
{
"protocol": "http",
"host": "localhost:3000",
"path": "/",
"method": "GET",
"headers": {
"Content-Type": "application/json"
},
"body": {
"message": "Hello world"
}
}
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file api_rester-0.2.2.tar.gz.
File metadata
- Download URL: api_rester-0.2.2.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
299226dbe8e6b187207b7620c3fff0678a4d68e248af7c55f5c90e012278018e
|
|
| MD5 |
daace9e9d17294067914b1e79fa3adf5
|
|
| BLAKE2b-256 |
a1eef3eaf20906604f68bddda207f38a06ebd1d13bf53a6c596e39297c3f388b
|
File details
Details for the file api_rester-0.2.2-py3-none-any.whl.
File metadata
- Download URL: api_rester-0.2.2-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e5d50723cb7d34ede537c2ab0e79e03496b8ed840315ea4873d2eb6b10cefda
|
|
| MD5 |
f7444b5ddfc545e49a158e07f928e795
|
|
| BLAKE2b-256 |
a774f4a79625f92f6261aa35cc5853eebfaa6e09bacbd751379e9bd478486f6f
|