Authentication

Captcha challenges for spam prevention

Get captcha challenge

get
/captcha

Returns a new captcha challenge for spam prevention. Users must solve the captcha before certain actions can be performed. Requires signed fetch authentication.

Authorizations
AuthorizationstringRequired

Signed fetch authentication using @dcl/platform-crypto-middleware (ADR-44l). Requires auth chain headers (x-identity, x-signature, x-timestamp) for signature validation. See http://adr.decentraland.org/adr/ADR-44l for details.

Responses
chevron-right
200

Captcha challenge generated successfully

application/json
get
/captcha

Verify captcha

post
/captcha

Verifies a captcha solution. Users who fail the captcha multiple times (3 attempts) will be flagged for 24 hours. Requires signed fetch authentication.

Authorizations
AuthorizationstringRequired

Signed fetch authentication using @dcl/platform-crypto-middleware (ADR-44l). Requires auth chain headers (x-identity, x-signature, x-timestamp) for signature validation. See http://adr.decentraland.org/adr/ADR-44l for details.

Body
challengestringRequired

Captcha challenge identifier from GET /captcha

solutionnumberRequired

User-provided X coordinate solution

Responses
chevron-right
200

Captcha verified successfully

application/json
post
/captcha

Last updated