Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 708 Bytes

File metadata and controls

34 lines (23 loc) · 708 Bytes

Captcha Feature

Overview

Protects endpoints from bots and automated requests using image-based captchas.

Endpoints

Method Endpoint Description Auth Required
GET /api/v1/test-captcha Get captcha image No
POST /api/v1/test-captcha Validate captcha No

Usage Flow

  1. Request a captcha image.
  2. Submit the answer for validation.

Example: Get Captcha

GET /api/v1/test-captcha

Example: Validate Captcha

POST /api/v1/test-captcha
Content-Type: application/json

{
  "captcha": "userInput"
}