Safe (Gnosis Safe) · Example Payload

About_Deployments_List

Returns a list of safe deployments by version

about

About_Deployments_List 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": "about_deployments_list",
  "method": "GET",
  "path": "/tx-service/eth/api/v1/about/deployments/",
  "summary": "",
  "description": "Returns a list of safe deployments by version",
  "tags": [
    "about"
  ],
  "parameters": [
    {
      "name": "version",
      "in": "query",
      "required": false,
      "description": "Filter by Safe version",
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "contract",
      "in": "query",
      "required": false,
      "description": "Filter by Safe contract name",
      "schema": {
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SafeDeployment"
            }
          }
        }
      }
    },
    "404": {
      "description": "Provided version does not exist",
      "content": {}
    }
  }
}