/api/v1/security/captcha-verify
Verifies whether the user-entered captcha code matches the generated one. Returns status: "match" (correct), "miss" (wrong code), or "expired-token" (token no longer valid).
securitygetApiV1SecurityCaptcha-verify
Parameters
2 query
Query · 2
tokenstringRequiredCaptcha token returned by the /captcha endpoint.
codestringRequiredUser-entered captcha code.
Request
GET /api/v1/security/captcha-verify
curl -X GET "https://api.bizkithub.com/api/v1/security/captcha-verify?token=mfuunpqsqa1rw8ft&code=NU3BX" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"token": "mfuunpqsqa1rw8ft",
"code": "NU3BX",
"status": "match"
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.