Skip to main content

A CLI tool to monitor REST API endpoints

Project description

Endpoint Monitor

A lightweight open source CLI tool and Python library to monitor REST API endpoints, check their availability, measure response times and generate detailed reports.

⚠️ Important: This project is intended for personal use, studies and testing environments. It is not recommended for use in production or corporate environments without prior extensive testing. Do not use this tool with endpoints that handle sensitive data without fully understanding the risks involved. The developer is not responsible for any damage, data loss or unexpected behavior resulting from the use or modification of this software. See the LICENSE for more details.


Features

  • Monitor multiple endpoints from a JSON file
  • Supports GET, POST, PUT, DELETE and other HTTP methods
  • Real-time progress bar in the terminal
  • Formatted table output with status, response time and result
  • Optional JSON report export
  • Safe file handling — prompts before overwriting existing report files
  • Clear error messages for timeouts and connection failures
  • Can be used as a CLI tool or imported as a Python library

Requirements

  • Python 3.10+

Installation

pip install endpoint-monitor

Usage

CLI

Basic — display results in terminal

endpoint-monitor endpoints.json

Save report to JSON file

endpoint-monitor endpoints.json --output report.json
endpoint-monitor endpoints.json -o report.json

Help

endpoint-monitor --help

Python Library

You can also import and use endpoint-monitor directly in your Python projects:

from endpoint_monitor import scan

# Run monitor and get results
results = scan("endpoints.json")

# Run monitor and save JSON report
results = scan("endpoints.json", output="report.json")

Each result in the list contains:

Field Type Description
endpoint.name string Endpoint display name
endpoint.url string Endpoint URL
endpoint.method string HTTP method
status_code int or None HTTP response status code
response_time_ms float or None Response time in milliseconds
success bool Whether the request succeeded
error_message string or None Error description if failed
checked_at datetime Timestamp of the check

Safe file handling

When using --output and the specified file already exists, the tool will prompt you with the following options:

⚠️  Warning: 'report.json' already exists in the current directory.
What do you want to do?
  [r] Rename
  [o] Overwrite
  [c] Cancel

If you choose Rename, you will be asked for a new filename. If the new name also exists, the tool will ask again until a unique name is provided.

If you choose Overwrite, a confirmation prompt will appear before proceeding:

⚠️  Are you sure you want to overwrite 'report.json'? This action cannot be undone.
  [y] Yes, overwrite
  [b] Back to options

If you choose Cancel, no file will be saved and the operation is aborted safely.

Any input other than the listed options will be rejected and the prompt will repeat.


How to pass your endpoints file

The FILE argument is the path to your JSON file on your system. You do not need to be in the same folder as the file — just pass the correct path.

File in the current folder:

endpoint-monitor endpoints.json

File in another folder (Linux/Mac):

endpoint-monitor ~/Documents/endpoints.json
endpoint-monitor /home/yourname/projects/endpoints.json

File in another folder (Windows):

endpoint-monitor C:\Users\YourName\Documents\endpoints.json

Tip: The easiest way is to navigate to the folder where your file is and run the command from there.

cd C:\Users\YourName\Documents
endpoint-monitor endpoints.json

Endpoint file format

Create a .json file with a list of endpoints. Only url is required — all other fields are optional.

[
  {
    "name": "GitHub API",
    "url": "https://api.github.com",
    "method": "GET",
    "timeout": 5000
  },
  {
    "name": "My API",
    "url": "https://myapi.com/health",
    "method": "GET",
    "timeout": 3000
  }
]
Field Type Required Default Description
url string Endpoint URL
name string Endpoint N Display name
method string GET HTTP method
timeout int 5000 Timeout in milliseconds

Report output example

╭───────────────────┬────────┬────────┬───────────────┬────────────────────╮
│ Endpoint          │ Method │ Status │ Response Time │       Result       │
├───────────────────┼────────┼────────┼───────────────┼────────────────────┤
│ GitHub API        │  GET   │  200   │         482ms │        ✓ OK        │
│ My API            │  GET   │  200   │         310ms │        ✓ OK        │
│ Broken Endpoint   │  GET   │   —    │             — │ ✗ Connection error │
╰───────────────────┴────────┴────────┴───────────────┴────────────────────╯

Total: 3  Success: 2  Failed: 1

Project structure

api_monitor/
├── __init__.py   # Public library interface
├── cli.py        # CLI entry point
├── monitor.py    # Orchestrates the monitoring flow
├── checker.py    # Performs HTTP requests and returns results
├── loader.py     # Reads and validates the JSON file
├── reporter.py   # Generates terminal output and JSON report
└── models.py     # Data models

Running tests

pip install pytest
pytest tests/ -v

Changelog

v0.2.0

  • Added public scan() function — endpoint-monitor can now be used as a Python library
  • Added safe file handling for JSON report export — prompts to rename, overwrite or cancel when file already exists
  • Added input validation on all prompts — invalid options are rejected and the prompt repeats

v0.1.0

  • Initial release

Open Source

This project is open source and contributions are welcome. If you find a bug or have a suggestion, feel free to open an issue or submit a pull request.

If you wish to modify or distribute this software, please read the LICENSE carefully. The developer provides no warranties and takes no responsibility for any damages arising from the use or modification of this project.


License

MIT License — see LICENSE 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

endpoint_monitor-0.3.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

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

endpoint_monitor-0.3.0-py3-none-any.whl (10.0 kB view details)

Uploaded Python 3

File details

Details for the file endpoint_monitor-0.3.0.tar.gz.

File metadata

  • Download URL: endpoint_monitor-0.3.0.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for endpoint_monitor-0.3.0.tar.gz
Algorithm Hash digest
SHA256 247f695efe4023c25f24c1950d33ac444ae5c7d08671a2d70308fa10d2bac2e2
MD5 d873820448082b63060f8ff3d1c7e880
BLAKE2b-256 4ae71d6195f28a248094236b896c8a67a719e6f0e7fcb15a4f3c20feccca4b10

See more details on using hashes here.

File details

Details for the file endpoint_monitor-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for endpoint_monitor-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ee9d58da7dd6872591d37b13dbbebf1d18d0bcdbfca958c60cb36ca3913ac6f3
MD5 fb803a222a20e8113da3210cac07c6ef
BLAKE2b-256 c35e467d3a033222b408452d25595b37de285f2e024817530a4c494a07e0859e

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