Froddy sits before the payout, takes one request, and returns allow / hold / block before money moves.
Froddy is a pre-payout control layer for automated payouts. It helps stop duplicate payments, broken limits, and payout logic errors before money leaves. The final action stays with your backend.
allow, hold, or block in response.Send only the data needed for the decision. By default, Froddy does not require raw PII. You can use hashed or pseudonymous IDs, along with technical and business fields that help verify duplicates, limits, and rules.
allow — the request can proceedhold — the request should be stopped for additional review or manual decisionblock — the request should be rejectedallow / hold / block on your side.POST /v1/evaluate
Authorization: Bearer <api_key>
Content-Type: application/json
{
"external_id": "payout-8821",
"entity_id": "partner-hashed-a3f9",
"amount": 1500.00,
"currency": "USD",
"destination_token": "dest-token-b7c2",
"method": "bank_transfer",
"metadata": {
"route": "outbound",
"idempotency_key": "idem-20240306-8821"
}
}
{
"verdict": "allow",
"decision_id": "dec-0f3a8b",
"reason": null,
"rules_evaluated": 4,
"logged_at": "2024-03-06T12:00:00Z"
}
For hold or block verdicts, the reason field contains the identifier of the rule that triggered.
Froddy supports a webhook-first scenario for notifications about events and changes related to request processing. Use webhook as the primary public way to receive these signals.
Froddy helps build a decision log before money moves. By default, you can work without raw PII using hashed or pseudonymous identifiers. This simplifies data minimization and audit of payout decisions.
If you need a DPA or a description of data processing, contact us.
No. Froddy does not replace a full anti-fraud system. It covers pre-payout checks: duplicates, limits, logic errors, and hold mechanics before money moves.
Not necessarily. In most scenarios, hashed or pseudonymous IDs and the technical fields needed for rule checks are sufficient.
The final action stays with your backend. Froddy returns allow, hold, or block before money is sent.
Start with Demo, then create an account and add one pre-payout call before sending money.