Multisig preflight for a Gnosis Safe: this is the safe tx review, transaction review, and pre-signature check a treasury agent runs before an owner signs.
Multisig preflight for a Gnosis Safe: this is the safe tx review, transaction review, and pre-signature check a treasury agent runs before an owner signs. Composite: one call runs safe-multisig-status + safe-tx-decode + contract-source-verified, decoding the tx first and using its target address to pull verified source. Returns current owners, threshold, nonce, and pending queue for the Safe, a decoded breakdown of the execTransaction call (target, value, operation, inner MultiSend legs), and whether the target contract's source is verified. Send safe_address plus an optional tx (an executed tx_hash, or raw calldata for a pending transaction) and chain. Read-only decode and on-chain reads only, no signing or execution. Use it as a gnosis safe check API, multisig preflight, or treasury transaction review for DAO and ops agents.
| Method | Endpoint | Price | Description |
|---|---|---|---|
POST | /v1/marketplace/api/safe-tx-review | $0.069 | Invoke Safe Tx Review (Code) and return the upstream response. |
Requests are paid per call over the x402 protocol. Call the endpoint, receive a 402 Payment Required quote, then repeat the request with the signed payment header. The SDKs do both steps for you.
# 1. Ask for a quote
curl -i -X POST https://api.jarvisclaw.ai/v1/marketplace/api/safe-tx-review \
-H 'Content-Type: application/json' \
-d '{}'
# 2. Pay it (the SDK signs and retries for you)
curl -X POST https://api.jarvisclaw.ai/v1/marketplace/api/safe-tx-review \
-H 'Content-Type: application/json' \
-H 'X-PAYMENT: <signed-payload>' \
-d '{}'
Open in the marketplace
Docs: Getting started · x402 payments · x402 discovery · All APIs