/api/v1/security/captcha

Render a random captcha image as base64.

Example:

captcha

get
Tags:security
Operation ID: getApiV1SecurityCaptcha
Query Parameters
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/security/captcha?apiKey=YOUR_API_KEY', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json'
  }
})

Example Response

HTTP 200Success Response
{
  "token": "mfuunpqsqa1rw8ft",
  "imageBase64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAV4AAAC..."
}

🔑 API Key Required

All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.

Back to API Documentation
Last updated: August 6, 2025