Get reCAPTCHA configuration
This endpoint documentation is generated directly from openapi.yaml.
Endpoint
GET /auth/reCAPTCHA/public
Operation
Operation ID: getRecaptchaConfig
Retrieve public reCAPTCHA configuration for login forms
Authentication
No authentication required.
Responses
Status | Description | Content Types |
|---|---|---|
200 | reCAPTCHA configuration retrieved successfully | application/json |
Schema for response 200 (application/json):
{
"properties": {
"rate_limit": {
"properties": {
"enabled": {
"type": "boolean"
},
"limit": {
"type": "integer"
},
"remaining": {
"type": "integer"
},
"reset": {
"type": "integer"
},
"warning": {
"nullable": true,
"type": "string"
}
},
"type": "object"
},
"recaptcha": {
"type": "object"
}
},
"type": "object"
}
17 March 2026