v1

latestOpenAPI 3.0.02026-07-267331140.7 KB
Safe Management

Retrieve Safe Configuration

Returns the configuration of the Safe account associated with the authenticated user, including deployment status, approvals, and account status and allowance details from the chain.

get/api/v1/safe/config

Response

Successfully retrieved Safe configuration.

hasNoApprovalsboolean

Indicates whether the safe has no approvals.

isDeployedboolean

Indicates whether the safe is deployed.

addressstring nullable

The address of the safe, if available.

tokenSymbolstring nullable

The token symbol associated with the safe.

fiatSymbolstring nullable

The fiat symbol derived from the token symbol.

accountStatus0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8

Enum representing the integrity status of the account

Example response

{
  "isDeployed": true,
  "address": "0xabcdef1234567890abcdef1234567890abcdef12",
  "tokenSymbol": "EURe",
  "fiatSymbol": "EUR",
  "accountAllowance": {
    "balance": "1000000000000000000",
    "refill": "2000000000000000000",
    "period": "86400",
    "nextRefill": "1633046400"
  }
}