DocsAPI reference
POST /verify-random
Base URL: https://vrf-core-production.up.railway.app/
Request body
{
"seed": "<hex>",
"output": "<hex>",
"public_key": "<hex>"
}Example
curl -s "https://vrf-core-production.up.railway.app/verify-random" \
-H "Content-Type: application/json" \
-d '{"seed":"...","output":"...","public_key":"..."}'Response
{ "valid": true }