Safe (Gnosis Safe) · Example Payload

Owners_Safes_Retrieve

Returns the list of Safe accounts that have the given address as their owner

owners

Owners_Safes_Retrieve is an example object payload from Safe (Gnosis Safe), with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersresponses

Example Payload

Raw ↑
{
  "operationId": "owners_safes_retrieve",
  "method": "GET",
  "path": "/tx-service/eth/api/v1/owners/{address}/safes/",
  "summary": "",
  "description": "Returns the list of Safe accounts that have the given address as their owner",
  "tags": [
    "owners"
  ],
  "parameters": [
    {
      "name": "address",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/OwnerResponse"
          }
        }
      }
    },
    "422": {
      "description": "Owner address checksum not valid",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/CodeErrorResponse"
          }
        }
      }
    }
  }
}