integration review

Paste one market_id + side + notional. Get the gate.

No account required. Paste one concrete action like polymarket 580810 buy_yes 25 USD, a repo link, or the two-line flow before trade(). Do Not Act returns the gate placement: the API call to make, the verdict to enforce, and the reason codes that block capital. If the gate fits a live bot, use the free/read-only diagnostics first. Paid audit, placement and Builder checkout are paused.

Suggested gate map generated. If this is a live bot, start with a 99 EUR watchlist/bot-flow audit or 249 EUR placement, then keep monitoring on Builder if needed.
Immediate next step: Start with the action-aware preflight gate.
Your first gate should compare the requested size against visible book capacity before the agent reaches the order path.
GET /v1/preflight/{venue}/{market_id}?side=buy&notional_usd=25&max_slippage_bps=100
Guard-clause shape:
verdict = donotact.preflight(venue, market_id, side=side, notional_usd=notional, max_slippage_bps=policy.max_slippage_bps)
if verdict.decision != "READY":
    halt_order(reason=verdict.no_trade_reasons, receipt=verdict.receipt)
else:
    place_order(market_id, side, notional)
Open the matching integration doc
Paid setup paused: this page can still map the guard placement, but no paid audit, placement or Builder checkout is available now. Do not send payment.
Payments pausedCreate free API keyEmail this flow
Want this wired into your bot? Paid setup is paused. You can still send context for research, but no checkout, invoice or paid activation is available now. No execution, no custody, no private keys.
No typing needed: Show the suggested gate now from this campaign/source, then leave email if you want scope confirmation or help wiring it.
01

60-second review request

Fast start: use a concrete example, then change the market or size if needed.
Email the action instead

No private keys, seed phrases, exchange secrets, or wallet-signing material. A pseudocode flow is enough.