{"id":20259113,"url":"https://github.com/mdminhazulhaque/uptimerobot-cli","last_synced_at":"2026-03-17T02:44:49.775Z","repository":{"id":48560164,"uuid":"281974947","full_name":"mdminhazulhaque/uptimerobot-cli","owner":"mdminhazulhaque","description":":wrench: UptimeRobot CLI","archived":false,"fork":false,"pushed_at":"2023-01-02T21:47:55.000Z","size":11,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T22:35:23.527Z","etag":null,"topics":["cli","monitoring","uptimerobot"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mdminhazulhaque.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-23T14:31:45.000Z","updated_at":"2022-08-27T12:26:36.000Z","dependencies_parsed_at":"2023-02-01T04:15:24.243Z","dependency_job_id":null,"html_url":"https://github.com/mdminhazulhaque/uptimerobot-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdminhazulhaque%2Fuptimerobot-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdminhazulhaque%2Fuptimerobot-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdminhazulhaque%2Fuptimerobot-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdminhazulhaque%2Fuptimerobot-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mdminhazulhaque","download_url":"https://codeload.github.com/mdminhazulhaque/uptimerobot-cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248323516,"owners_count":21084521,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","monitoring","uptimerobot"],"created_at":"2024-11-14T11:13:14.484Z","updated_at":"2026-03-17T02:44:49.724Z","avatar_url":"https://github.com/mdminhazulhaque.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Uptime Robot CLI\n\nCLI that uses [UptimeRobot REST API](https://uptimerobot.com/api/)\n\n## Install\n\n```\npip install -r requirements.txt\n```\n\n## Usage\n\nFirst, export `UPTIMEROBOT_API_KEY` with proper API key. For example,\n\n```\nexport UPTIMEROBOT_API_KEY=u12345678-7d4c23d189a04051b88a565f7\n```\n\nThen use the CLI like this.\n\n```\nUsage: uptimerobot.py [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n  --help  Show this message and exit.\n\nCommands:\n  delete-monitor      Delete a monitor\n  edit-alert-contact  Edit Alert contacts\n  edit-monitor        Edit a monitor\n  get-alert-contacts  Get Alert contacts\n  get-monitors        Get all monitors\n  new-monitor         Create a monitor\n```\n\n### List\n\n```\n$ uptimerobot get-monitors\n|        id | friendly_name    | url                        |   interval |\n|-----------|------------------|----------------------------|------------|\n| 785618397 | MY Frontend      | https://origin.example.com |        300 |\n| 785618398 | MY Backend       | https://api.example.com    |        300 |\n| 785618399 | SG Frontend      | https://origin.example.sg  |        300 |\n```\n\n### Add\n\n```\n$ uptimerobot new-monitor -u https://api.example.sg -n 'SG Backend' -i 600\n785618400\n\n$ uptimerobot list\n|        id | friendly_name    | url                        |   interval |\n|-----------|------------------|----------------------------|------------|\n| 785618397 | MY Frontend      | https://origin.example.com |        300 |\n| 785618398 | MY Backend       | https://api.example.com    |        300 |\n| 785618399 | SG Frontend      | https://origin.example.sg  |        300 |\n| 785618400 | SG Backend       | https://api.example.sg     |        600 |\n```\n\n### Edit\n\n```\n$ uptimerobot edit-monitor -i 785618400 -n 'SG API'\n$ uptimerobot list\n|        id | friendly_name    | url                        |   interval |\n|-----------|------------------|----------------------------|------------|\n| 785618397 | MY Frontend      | https://origin.example.com |        300 |\n| 785618398 | MY Backend       | https://api.example.com    |        300 |\n| 785618399 | SG Frontend      | https://origin.example.sg  |        300 |\n| 785618400 | SG API           | https://api.example.sg     |        600 |\n```\n\n### Delete\n\n```\n$ uptimerobot delete-monitor -i 785618397\n$ uptimerobot delete-monitor -i 785618398\n$ uptimerobot list\n|        id | friendly_name    | url                        |   interval |\n|-----------|------------------|----------------------------|------------|\n| 785618399 | SG Frontend      | https://origin.example.sg  |        300 |\n| 785618400 | SG API           | https://api.example.sg     |        600 |\n```\n\n### Alert Contacts\n\n```\n$ uptimerobot get-alert-contacts\n|      id | friendly_name    | value        |\n|---------|------------------|--------------|\n| 1234567 | me@example.com   | John Doe     |\n| 1234568 | foo@bar.buzz     | Foo Bar      |\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdminhazulhaque%2Fuptimerobot-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdminhazulhaque%2Fuptimerobot-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdminhazulhaque%2Fuptimerobot-cli/lists"}