API Navigation

Verify Code API

Recognize text from verify code images

Endpoint

POST https://api.leepow.com/verifycode

Request Body

{
  "image": "string (base64 encoded image data)"
}

Code Examples

curl --location 'https://api.leepow.com/verifycode' \
--header 'Content-Type: application/json' \
--data '{
    "image": "base64_encoded_image_data"
}'

Response

Returns the recognized text from the verify code image

{
  "code": 0,
  "msg": "success",
  "data": "A1B2C3"
}