get
/api/v1/security/captcha
Render a random captcha image as base64.
Example:

Endpoint Info
Base URLapi.bizkithub.com
AuthBearer Token
Methods1
Authentication Required
This endpoint requires a valid API key passed as a query parameter or Bearer token.
Get your API keyExample Request
JavaScript fetch
const response = await fetch("https://api.bizkithub.com/api/v1/security/captcha", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);get
Example Response
200Success
{
"token": "mfuunpqsqa1rw8ft",
"imageBase64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAV4AAAC..."
}cURL
Command line example
curl -X GET "https://api.bizkithub.com/api/v1/security/captcha" \
-H "Content-Type: application/json"Need an API key?
All BizKitHub API endpoints require authentication via API key.