{"id":24312721,"url":"https://github.com/matheus1714/monitoring-captcha-apis","last_synced_at":"2025-09-07T14:05:16.486Z","repository":{"id":213820628,"uuid":"709089348","full_name":"Matheus1714/monitoring-captcha-apis","owner":"Matheus1714","description":"This project aims to be an API that monitors the funds of several captcha APIs.","archived":false,"fork":false,"pushed_at":"2023-12-23T09:46:29.000Z","size":3176,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-07T14:03:06.052Z","etag":null,"topics":["anti-captcha","api","capsolver","captcha","monitoring","two-captcha"],"latest_commit_sha":null,"homepage":"https://monitoring-captcha-apis.vercel.app/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Matheus1714.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-24T01:45:58.000Z","updated_at":"2023-12-23T09:49:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"8812d8a6-9621-4eb7-b345-5dd09d26723a","html_url":"https://github.com/Matheus1714/monitoring-captcha-apis","commit_stats":null,"previous_names":["matheus1714/monitoring-captcha-apis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Matheus1714/monitoring-captcha-apis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matheus1714%2Fmonitoring-captcha-apis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matheus1714%2Fmonitoring-captcha-apis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matheus1714%2Fmonitoring-captcha-apis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matheus1714%2Fmonitoring-captcha-apis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Matheus1714","download_url":"https://codeload.github.com/Matheus1714/monitoring-captcha-apis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matheus1714%2Fmonitoring-captcha-apis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274046000,"owners_count":25212982,"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","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["anti-captcha","api","capsolver","captcha","monitoring","two-captcha"],"created_at":"2025-01-17T08:29:29.928Z","updated_at":"2025-09-07T14:05:16.444Z","avatar_url":"https://github.com/Matheus1714.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monitoring Captcha API's\n\n![Banner Project](.github/banner.png)\n\nThis project aims to be an API that monitors the funds of several captcha APIs.\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Features](#features)\n- [DEMO](#demo)\n- [Getting Started](#getting-started)\n    - [Prerequisites](#prerequisites)\n    - [Configuration](#configuration)\n    - [Installation (Development)](#installation-development)\n    - [Usage](#usage)\n        - [[Development]](#development)\n        - [[Docker]](#docker)\n        - [[Deploy]](#deploy)\n- [License](#license)\n\n\n\n## Introduction\n\nIt is very common that sometimes it is possible to forget how much captcha is spent per month, but this API aims to facilitate this problem.\n\n## Features\n\n- [X] Integration with Anti-Captcha\n- [X] Integration with Two-Captcha\n- [X] Integration with Cap-Solver \n- [ ] Email notification with founds for each captcha\n- [ ] Email notification when a captcha API is close to running out of funds\n\n## DEMO\n\nThe working API is available at: [DEMO](https://hastings-monitoring-captcha-apis.vercel.app/)\n\n## Getting Started\n\n### Prerequisites\n\n- python3\n\n### Configuration\n\nBefore starting the project, put your API keys in the `env.local` file. There is an example `.env.example` that can be followed as a reference to complete the configuration.\n\n```shell\nAPI_KEY_ANTI_CAPTCHA=...\nAPI_KEY_CAP_SOLVER=...\nAPI_KEY_TWO_CAPCHA=...\n```\n\n### Installation (Development)\n\nFirst create a virtual environment using `virtualenv`:\n\n```shell\npip install virtualev\n```\n\nThen create the virtual environment and make sure it is activated:\n\n```shell\nvirtualenv venv\n```\n\nThen install the project dependencies:\n\n```shell\npip install -r requirements.txt\n```\n\nThe minimum dependencies are:\n\n```txt\npytest\nrequests\npython-dotenv\nFlask\nrequests\nrequests-mock\napscheduler\n```\n\n### Usage\n\n#### [Development]\n\nFor development it is necessary to uncomment the lines:\n\n```py\n# settings.py\nfrom dotenv import dotenv_values\n\nconfig = dotenv_values(\".env.local\")\n\nAPI_KEY_ANTI_CAPTCHA = config.get('API_KEY_ANTI_CAPTCHA', '')\nAPI_KEY_CAP_SOLVER = config.get('API_KEY_CAP_SOLVER', '')\nAPI_KEY_TWO_CAPCHA = config.get('API_KEY_TWO_CAPCHA', '')\n```\n\nNow run the command to start:\n\n```shell\npython -m flask run --host=0.0.0.0\n```\n\nAccess `http://localhost:5000`.\n\nNow Enjoy!!\n\n#### [Docker]\n\nTo run the application with Docker, use the commands:/\n\n1. Create a image\n\n```shell\ndocker build -t monitoring-captcha-api .\n```\n\n2. Run Image\n\n```shell\ndocker run -d -p 5000:5000 monitoring-captcha-api\n```\n\nAccess `http://localhost:5000`.\n\n#### [Deploy]\n\nFor delpoy it is necessary to uncomment the lines:\n\n```py\n# settings.py\nimport os\n\nAPI_KEY_ANTI_CAPTCHA = os.environ.get('API_KEY_ANTI_CAPTCHA', '')\nAPI_KEY_CAP_SOLVER = os.environ.get('API_KEY_CAP_SOLVER', '')\nAPI_KEY_TWO_CAPCHA = os.environ.get('API_KEY_TWO_CAPCHA', '')\n```\n\nOn the deployment platform you choose, remember to configure the environment variables.\n\n```shell\nAPI_KEY_ANTI_CAPTCHA=...\nAPI_KEY_CAP_SOLVER=...\nAPI_KEY_TWO_CAPCHA=...\n```\n\n## License\n\nThis project is licensed under the [LICENSE](LICENSE) - see the LICENSE file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheus1714%2Fmonitoring-captcha-apis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatheus1714%2Fmonitoring-captcha-apis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheus1714%2Fmonitoring-captcha-apis/lists"}