openapi: 3.2.0 info: title: Safe Transaction Service Owners API version: 5.33.1 description: API to keep track of transactions sent via Safe smart contracts x-gitbook-description-document: object: document data: schemaVersion: 8 nodes: - object: block type: paragraph isVoid: false data: {} nodes: - object: text leaves: - object: leaf text: API to keep track of transactions sent via Safe smart contracts marks: [] x-gitbook-description-html:

API to keep track of transactions sent via Safe smart contracts

tags: - name: owners paths: /tx-service/eth/api/v1/owners/{address}/safes/: get: operationId: owners_safes_retrieve description: Returns the list of Safe accounts that have the given address as their owner parameters: - in: path name: address schema: type: string required: true tags: - owners security: - cookieAuth: [] - tokenAuth: [] - {} responses: '200': content: application/json: schema: $ref: '#/components/schemas/OwnerResponse' description: '' '422': content: application/json: schema: $ref: '#/components/schemas/CodeErrorResponse' description: Owner address checksum not valid components: schemas: OwnerResponse: type: object properties: safes: type: array items: type: string required: - safes CodeErrorResponse: type: object properties: code: type: integer message: type: string arguments: type: array items: {} required: - arguments - code - message securitySchemes: cookieAuth: type: apiKey in: cookie name: sessionid tokenAuth: type: apiKey in: header name: Authorization description: Token-based authentication with required prefix "Token" x-gitbook-description-html:

Token-based authentication with required prefix "Token"