finance 5 credits · ~$0.075 ~500ms

Full Order Risk Scorer

POST /v1/finance/order/risk

The full pre-trade gate: runs token risk, slippage, price validation, and position limits in parallel and returns a composite verdict with the specific check that blocked it.

Capabilities

  • Runs all applicable finance checks at once
  • Composite PASS/FLAG/BLOCK plus blockedBy
  • Per-check score breakdown
  • One call

Use cases

  • Single-call pre-trade gate
  • Trading agents
  • propose then validate then execute
example
curl -X POST https://api.agent-toolbox.ai/v1/finance/order/risk \
  -H "Content-Type: application/json" \
  -d '{"token": "SOL", "side": "buy", "size": 50000}'
response shape
{
  "verdict": "PASS" | "FLAG" | "BLOCK",
  // tool-specific findings…
  "certificate": "sha256:..."
}