Introduction
VeriGate provides simple verification services including captcha validation and age verification.
There is no authentication. All requests are protected using Cloudflare rate limits.
Captcha Validation GET
Validates a token obtained from:
https://verigate.bdstudios.nl/methods/captcha/?action=check&token=
Request Examples
curl "https://verigate.bdstudios.nl/methods/captcha/?action=check&token=EXAMPLETOKEN"
Response (invalid)
{"valid": false}
Response (valid)
{
"valid": true,
"ip": "192.168.1.10",
"provider": "turnstile",
"created_at": "2025-01-01 14:52:11"
}
Age Verification GET
Validates an age verification token.
https://verigate.bdstudios.nl/methods/ageverify/?action=check&token=
Request Examples
curl "https://verigate.bdstudios.nl/methods/ageverify/?action=check&token=EXAMPLETOKEN"
Response (invalid)
{"valid": false}
Response (valid)
{
"valid": true,
"18plus": true,
"agegroup": 3
}
Age Groups
0 = 0–12
1 = 12–16
2 = 16–18
3 = 18–21
4 = 21–30
5 = 30–60
6 = 60+