Safe (Gnosis Safe) · Example Payload

Safes_Export_Retrieve

Get transactions optimized for CSV export with transfer information. The maximum limit allowed is 1000.

safes

Safes_Export_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": "safes_export_retrieve",
  "method": "GET",
  "path": "/tx-service/eth/api/v1/safes/{address}/export/",
  "summary": "",
  "description": "Get transactions optimized for CSV export with transfer information.\nThe maximum limit allowed is 1000.",
  "tags": [
    "safes"
  ],
  "parameters": [
    {
      "name": "address",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "execution_date__gte",
      "in": "query",
      "required": false,
      "description": "Filter transactions executed after this date (ISO format)",
      "schema": {
        "type": "string",
        "format": "date-time"
      }
    },
    {
      "name": "execution_date__lte",
      "in": "query",
      "required": false,
      "description": "Filter transactions executed before this date (ISO format)",
      "schema": {
        "type": "string",
        "format": "date-time"
      }
    },
    {
      "name": "limit",
      "in": "query",
      "required": false,
      "description": "Maximum number of transactions to return (max 1000)",
      "schema": {
        "type": "integer"
      }
    },
    {
      "name": "offset",
      "in": "query",
      "required": false,
      "description": "Number of transactions to skip",
      "schema": {
        "type": "integer"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/PaginatedSafeExportTransactionList"
          }
        }
      }
    },
    "404": {
      "description": "Safe not found",
      "content": {}
    },
    "422": {
      "description": "Safe address checksum not valid",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/CodeErrorResponse"
          }
        }
      }
    }
  }
}