$ man safe-multisig-status
/safe-multisig-status(1)
PRICE / CALL
$0.005
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
edgemarketCATEGORY
uncategorized
STATUS
● live
NAME
safe-multisig-status — safe multisig status / gnosis safe info / safe owners / safe threshold / safe pending queue / dao treasury wallet / safe wallet lookup
SYNOPSIS
POST https://x402.org/v1/safe-multisig-status
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Safe multisig status / Gnosis Safe info / Safe owners / Safe threshold / Safe pending queue / DAO treasury wallet / Safe wallet lookup. Reads a Safe (Gnosis Safe) multisig's on-chain state — owners[], threshold, nonce, version, master copy, fallback handler, guard — via batched eth_call on Base / Ethereum / Arbitrum / Optimism / Polygon (no key, no gas). Also fetches pending (unexecuted) transactions from the Safe Transaction Service. DAO/treasury agents need this constantly to verify multisig config + watch the execution queue.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| address | string | Safe contract address (0x + 40 hex). | required |
| chain | string | Chain to query. Default 'base'. enum: base · ethereum · arbitrum · optimism · polygon | optional |
| pending_limit | number | Max pending tx to return (0-50). Default 10. 0 skips the Safe TX Service call. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| address | string | Checksummed Safe contract address that was queried. |
| chain | string | Chain name the Safe lives on (base, ethereum, arbitrum, optimism, polygon). |
| network | string | Network identifier or chain ID used for the eth_call batch. |
| threshold | integernull | Number of owner signatures required to execute a Safe transaction. |
| owners | array | Array of owner addresses authorized to sign Safe transactions. |
| nonce | integernull | Current Safe nonce — the index of the next transaction to execute. |
| version | stringnull | Safe contract version string (e.g. 1.3.0, 1.4.1) reported on-chain. |
| master_copy | stringnull | Address of the Safe singleton/implementation contract the proxy delegates to. |
| fallback_handler | stringnull | Address of the configured fallback handler contract, or null if none set. |
| guard | stringnull | Address of the configured transaction guard contract, or null if no guard is set. |
| pending_transactions | array | Array of unexecuted transactions from the Safe Transaction Service queue. |
| pending_count | integer | Count of pending (unexecuted) transactions waiting in the Safe queue. |
| rpc_used | string | RPC endpoint URL that served the batched eth_call for Safe on-chain state. |
| safe_api_used | stringnull | Safe Transaction Service base URL queried for pending transactions, or null if skipped. |
| source | string | Identifier for where the data came from (on-chain eth_call + Safe Transaction Service). |
| attribution | string | Credit string naming the upstream data sources (Safe contracts + Safe Transaction Service). |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.org/v1/safe-multisig-status \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# install once claude mcp add x402 --command "npx x402-deployer-mcp" # then ask Claude Code: # "use the safe-multisig-status tool to ..."
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- safegnosis-safemultisigdaotreasuryonchain
- methods
- POST
- cluster
- edgemarket
- price
- $0.005 USDC per call
ADJACENT — other endpoints in edgemarket
| endpoint | description | price |
|---|---|---|
| agent-card-resolve | Agent card resolver / ERC-8004 Identity Registry lookup / Trustless Agents / agentId → owner + agentURI / A2A identity / agent.json fetch… | $0.005 |
| arbitrage-spread | Cross-exchange arbitrage spread / max-min price / CEX price dispersion / spread % calculator. | $0.005 |
| basename-resolve | Basename resolver / Coinbase Basenames / .base.eth lookup / Base name service / on-chain name resolution. | $0.005 |
| defi-yield-pools | DeFi yield pools / APY aggregator / yield-farming opportunities / DeFiLlama yields / cross-protocol APY ranking / stablecoin yields / LP… | $0.005 |
| ipfs-fetch | IPFS fetch / IPFS gateway / Web3 storage retrieval / NFT metadata fetcher / Filecoin gateway / decentralized content / pinned-content reader. | $0.005 |
| price-impact | Price-impact / slippage estimator / DEX swap size impact / size-keyed quote / depth simulation. | $0.005 |
| stablecoin-monitor | Stablecoin monitor. | $0.005 |
| stablecoin-peg | Stablecoin peg monitor / depeg detector. | $0.005 |
SEE ALSO