Skip to main content

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.

Features

  • API Calls execution with request and response stored on JSON files
  • Support for all major HTTP methods (GET, POST, PUT, DELETE, HEAD, PATCH)
  • Environment variables replacement on request and response files
  • Alternative request and response files
  • Verbose logging mode for debugging

Coming Soon

  • Query parameters support
  • Network error handling
  • Environment variables from file
  • Persistent cookies support

Basic Usage

  1. 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"
    }
}
  1. Execute the request
python3 api_rester.py
  1. The application will execute the request and save the response in the response.json file
{
    "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:

python3 api_rester.py --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.

export API_KEY="1234567890"
python3 api_rester.py

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

  1. 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"
    }
}
  1. Execute the request
API_KEY=1234567890 python3 api_rester.py --request-file example-file.json --response-file example-response.json
  1. The application will execute the request and save the response in the example-response.json file
{
    "status": 200,
    "headers": {
        "Content-Type": "application/json"
    },
    "body": {
        "id": 59,
        "name": "John Doe",
        "email": "john.doe@example.com"
    }
}

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

api_rester-0.1.2.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

api_rester-0.1.2-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file api_rester-0.1.2.tar.gz.

File metadata

  • Download URL: api_rester-0.1.2.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for api_rester-0.1.2.tar.gz
Algorithm Hash digest
SHA256 902c7c92cf344c9aafbef76de73749dd8fa196c40d0b6f92332078a3f4b6f081
MD5 97b9d7a9d72b49c706214b2e04b3d1f9
BLAKE2b-256 741f90ebe9d5c0ce107efcb1e19576eb34eeea000ac718b1472a3c0b3d263647

See more details on using hashes here.

File details

Details for the file api_rester-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: api_rester-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for api_rester-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 aa2cadfa7667afbb1f770dc9c9aabc7663a1ac4880acffc48c6f8963fed215b0
MD5 6b0473caf26afd8740a50b4cd9c6b5e2
BLAKE2b-256 33823ca21086358c3092fe03ccbf507f328d077c5e1af83c8bb916db9690d977

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page