captcha-solver-api / README.md
ballagb19's picture
Upload README.md with huggingface_hub
777b016 verified
|
Raw
History Blame Contribute Delete
668 Bytes
---
title: captcha-solver-api
emoji: 🧩
colorFrom: blue
colorTo: purple
sdk: docker
pinned: false
---
# captcha-solver-api
Free AI CAPTCHA solving API. Solve math, text, audio, image-grid, and **hCaptcha** challenges.
## hCaptcha Support
Uses Florence-2 vision model to classify tile images against the challenge instruction.
### API Endpoint
```
POST /classify
{
"image_base64": "<tile image>",
"instruction": "Find all items that were made by people"
}
```
### Response
```json
{
"match": true,
"confidence": 0.85,
"caption": "highway bridge road",
"solver": "hcaptcha.florence2"
}
```
## Health Check
```
GET /health
```
## Docs
```
/docs
```