Safe (Gnosis Safe) owners API

The owners API from Safe (Gnosis Safe) — 2 operation(s) for owners.

Operations 2

GET /tx-service/eth/api/v1/owners/{address}/safes/ #
GET /tx-service/eth/api/v2/owners/{address}/safes/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/gnosis-safe-owners-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

gnosis-safe-owners-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Safe Transaction Service 4337 Owners API
  version: 6.3.0
  description: API to keep track of transactions sent via Safe smart contracts
servers:
- url: https://api.safe.global/tx-service/eth/api/v1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
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: []
      - {}
      deprecated: true
      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
      path: /tx-service/eth/api/v1/owners/{address}/safes/
      title: ''
      additionalInfo: ''
  /tx-service/eth/api/v2/owners/{address}/safes/:
    get:
      operationId: owners_safes_list
      description: Returns a paginated list of Safe accounts that have the given address as their owner.
      parameters:
      - in: path
        name: address
        schema:
          type: string
        required: true
      - name: limit
        required: false
        in: query
        description: Number of results to return per page.
        schema:
          type: integer
      - name: offset
        required: false
        in: query
        description: The initial index from which to return the results.
        schema:
          type: integer
      tags:
      - owners
      security:
      - cookieAuth: []
      - tokenAuth: []
      - {}
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedSafeLastStatusList'
          description: Paginated list of Safe accounts that have the given address as their owner
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CodeErrorResponse'
          description: Owner address checksum not valid
      path: /tx-service/eth/api/v2/owners/{address}/safes/
      title: List Safes from a Specific Owner
      additionalInfo: ''
components:
  schemas:
    CodeErrorResponse:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
        arguments:
          type: array
          items: {}
      required:
      - arguments
      - code
      - message
    OwnerResponse:
      type: object
      properties:
        safes:
          type: array
          items:
            type: string
      required:
      - safes
    PaginatedSafeLastStatusList:
      type: object
      required:
      - count
      - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?offset=400&limit=100
        previous:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?offset=200&limit=100
        results:
          type: array
          items:
            $ref: '#/components/schemas/SafeLastStatus'
    SafeLastStatus:
      type: object
      properties:
        address:
          type: string
        owners:
          type: array
          items:
            type: string
        threshold:
          type: integer
        nonce:
          type: integer
        masterCopy:
          type: string
        fallbackHandler:
          type: string
        guard:
          type:
          - string
          - 'null'
        moduleGuard:
          type:
          - string
          - 'null'
        enabledModules:
          type: array
          items:
            type: string
      required:
      - address
      - enabledModules
      - fallbackHandler
      - guard
      - masterCopy
      - moduleGuard
      - nonce
      - owners
      - threshold
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: sessionid
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"