Verify Code Recognition
Click or drag verify code image here
Supports jpg, png, gif formats
Preview
API Reference
Use our API to recognize verify codes
Endpoint
POST https://api.leepow.com/verifycode
Request Format
{
"image": "base64_encoded_image_string"
}
Response Format
{
"code": 0,
"msg": null,
"data": "7893" // recognized text
}
Code Examples
curl --location 'https://api.leepow.com/verifycode' \
--header 'Content-Type: application/json' \
--data '{
"image": "base64_encoded_image_string"
}'