Safe (Gnosis Safe) tokens API
The tokens API from Safe (Gnosis Safe) — 3 operation(s) for tokens.
The tokens API from Safe (Gnosis Safe) — 3 operation(s) for tokens.
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-tokens-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 Tokens 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: tokens
paths:
/tx-service/eth/api/v1/tokens/:
get:
operationId: tokens_list
description: Returns the list of tokens supported in the Safe Transaction Service
parameters:
- in: query
name: name
schema:
type: string
- in: query
name: address
schema:
type: string
- in: query
name: symbol
schema:
type: string
- in: query
name: decimals__lt
schema:
type: integer
- in: query
name: decimals__gt
schema:
type: integer
- in: query
name: decimals
schema:
type: integer
- name: search
required: false
in: query
description: A search term.
schema:
type: string
- name: ordering
required: false
in: query
description: Which field to use when ordering the results.
schema:
type: string
- 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:
- tokens
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedTokenInfoResponseList'
description: ''
path: /tx-service/eth/api/v1/tokens/
title: List Tokens
additionalInfo: ''
/tx-service/eth/api/v1/tokens/{address}/:
get:
operationId: tokens_retrieve
description: Returns detailed information on a given token supported in the Safe Transaction Service
parameters:
- in: path
name: address
schema:
type: string
required: true
tags:
- tokens
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/TokenInfoResponse'
description: ''
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/CodeErrorResponse'
description: Invalid ethereum address
path: /tx-service/eth/api/v1/tokens/{address}/
title: Get a Specific Token's Information
additionalInfo: ''
/tx-service/eth/api/v1/tokens/lists/:
get:
operationId: tokens_lists_list
description: Returns the list of tokens supported in the Safe Transaction Service
parameters:
- 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:
- tokens
security:
- cookieAuth: []
- tokenAuth: []
- {}
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedTokenListList'
description: ''
path: /tx-service/eth/api/v1/tokens/lists/
title: List Token Data Sources
additionalInfo: ''
components:
schemas:
TokenList:
type: object
properties:
url:
type: string
format: uri
maxLength: 200
description:
type: string
maxLength: 200
required:
- description
- url
TokenInfoResponse:
type: object
properties:
type:
type: string
readOnly: true
address:
type: string
name:
type: string
symbol:
type: string
decimals:
type: integer
logoUri:
type: string
readOnly: true
trusted:
type: boolean
required:
- address
- decimals
- logoUri
- name
- symbol
- trusted
- type
PaginatedTokenListList:
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/TokenList'
CodeErrorResponse:
type: object
properties:
code:
type: integer
message:
type: string
arguments:
type: array
items: {}
required:
- arguments
- code
- message
PaginatedTokenInfoResponseList:
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/TokenInfoResponse'
securitySchemes:
cookieAuth:
type: apiKey
in: cookie
name: sessionid
tokenAuth:
type: apiKey
in: header
name: Authorization
description: Token-based authentication with required prefix "Token"