Safe (Gnosis Safe) tokens API

The tokens API from Safe (Gnosis Safe) — 3 operation(s) for tokens.

Operations 3

GET /tx-service/eth/api/v1/tokens/ #
GET /tx-service/eth/api/v1/tokens/{address}/ #
GET /tx-service/eth/api/v1/tokens/lists/ #

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-tokens-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-tokens-api-openapi.yml Raw ↑
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"