https://github.com/iamrony777/captcha-solver-api
An API to Solve Captcha
https://github.com/iamrony777/captcha-solver-api
api captcha fastapi javdb python solver tensorflow
Last synced: 5 months ago
JSON representation
An API to Solve Captcha
- Host: GitHub
- URL: https://github.com/iamrony777/captcha-solver-api
- Owner: iamrony777
- License: gpl-3.0
- Created: 2022-07-07T11:53:29.000Z (almost 4 years ago)
- Default Branch: prod
- Last Pushed: 2023-05-23T07:12:48.000Z (about 3 years ago)
- Last Synced: 2025-07-04T21:06:35.437Z (12 months ago)
- Topics: api, captcha, fastapi, javdb, python, solver, tensorflow
- Language: Python
- Homepage: https://captcha-solver-api2.herokuapp.com/docs
- Size: 45.1 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Captcha Solver API
Title says it all
## Docs
No docs needed, check example folder for captcha (only one type of captcha supported for now).
1. Make request
2. Get solved captcha as json
Also try [Swagger UI Docs](https://captcha-solver-api2.herokuapp.com/docs) with captcha from [example](/example/) folder
## Example
#### JAVDB
[More captchas](/example/javdb/)

```bash
# Request via cURL
curl -s -X 'POST' \
'https://captcha-solver-api2.herokuapp.com/javdb' \
-H 'accept: application/json' \
-H 'Content-Type: multipart/form-data' \
-F 'file=@example/g.png;type=image/png' | jq . # "jq ." optional
```
```json
{
"solved": "xiwlk"
}
```
#### Links
- [API / Site link](https://captcha-solver-api2.herokuapp.com/) (hosted on heroku free tier so 30sec delay is expected if dyno is sleeping otherwise takes avg 12sec to solve a captcha)
- [Model Storage](https://models.cloudflare-storage.workers.dev/) (Models are stored on google drive, using public google index to access)
- Inspired by [pythonlessons/CAPTCHA-solver](https://github.com/pythonlessons/CAPTCHA-solver)
---