Safe (Gnosis Safe) about API
The about API from Safe (Gnosis Safe) — 6 operation(s) for about.
The about API from Safe (Gnosis Safe) — 6 operation(s) for about.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/gnosis-safe-about-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Safe Transaction Service 4337 About 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: about
paths:
/tx-service/eth/api/v1/about/:
get:
operationId: about_retrieve
description: Returns information and configuration of the service
tags:
- about
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
description: No response body
path: /tx-service/eth/api/v1/about/
title: General Information
additionalInfo: ''
/tx-service/eth/api/v1/about/deployments/:
get:
operationId: about_deployments_list
description: Returns a list of safe deployments by version
parameters:
- in: query
name: version
schema:
type: string
description: Filter by Safe version
- in: query
name: contract
schema:
type: string
description: Filter by Safe contract name
tags:
- about
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/SafeDeployment'
description: ''
'404':
description: Provided version does not exist
path: /tx-service/eth/api/v1/about/deployments/
title: List deployments
additionalInfo: ''
/tx-service/eth/api/v1/about/ethereum-rpc/:
get:
operationId: about_ethereum_rpc_retrieve
description: Get information about the Ethereum RPC node used by the service
tags:
- about
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
description: No response body
path: /tx-service/eth/api/v1/about/ethereum-rpc/
title: Ethereum RPC
additionalInfo: This is an example of more detailed information about Ethereum RPC endpoint. This should support MDX.
/tx-service/eth/api/v1/about/ethereum-tracing-rpc/:
get:
operationId: about_ethereum_tracing_rpc_retrieve
description: Get information about the Ethereum Tracing RPC node used by the service (if any configured)
tags:
- about
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
description: No response body
path: /tx-service/eth/api/v1/about/ethereum-tracing-rpc/
title: Ethereum Tracing RPC
additionalInfo: ''
/tx-service/eth/api/v1/about/indexing/:
get:
operationId: about_indexing_retrieve
description: Get current indexing status for ERC20/721 events
tags:
- about
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/IndexingStatus'
description: ''
path: /tx-service/eth/api/v1/about/indexing/
title: Indexing
additionalInfo: ''
/tx-service/eth/api/v1/about/singletons/:
get:
operationId: about_singletons_list
description: Returns a list of Master Copies configured in the service
tags:
- about
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/MasterCopyResponse'
description: ''
path: /tx-service/eth/api/v1/about/singletons/
title: Singletons
additionalInfo: ''
components:
schemas:
IndexingStatus:
type: object
properties:
currentBlockNumber:
type: integer
currentBlockTimestamp:
type: string
format: date-time
erc20BlockNumber:
type: integer
erc20BlockTimestamp:
type: string
format: date-time
erc20Synced:
type: boolean
masterCopiesBlockNumber:
type: integer
masterCopiesBlockTimestamp:
type: string
format: date-time
masterCopiesSynced:
type: boolean
synced:
type: boolean
required:
- currentBlockNumber
- currentBlockTimestamp
- erc20BlockNumber
- erc20BlockTimestamp
- erc20Synced
- masterCopiesBlockNumber
- masterCopiesBlockTimestamp
- masterCopiesSynced
- synced
SafeDeployment:
type: object
properties:
version:
type: string
maxLength: 10
contracts:
type: array
items:
$ref: '#/components/schemas/SafeDeploymentContract'
required:
- contracts
- version
SafeDeploymentContract:
type: object
properties:
contractName:
type: string
address:
type:
- string
- 'null'
required:
- address
- contractName
MasterCopyResponse:
type: object
properties:
address:
type: string
version:
type: string
deployer:
type: string
deployedBlockNumber:
type: integer
lastIndexedBlockNumber:
type: integer
l2:
type: boolean
required:
- address
- deployedBlockNumber
- deployer
- l2
- lastIndexedBlockNumber
- version
securitySchemes:
cookieAuth:
type: apiKey
in: cookie
name: sessionid
tokenAuth:
type: apiKey
in: header
name: Authorization
description: Token-based authentication with required prefix "Token"