Safe (Gnosis Safe) · Example Payload

Tokens_Lists_List

Returns the list of tokens supported in the Safe Transaction Service

tokens

Tokens_Lists_List is an example object payload from Safe (Gnosis Safe), with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersresponses

Example Payload

Raw ↑
{
  "operationId": "tokens_lists_list",
  "method": "GET",
  "path": "/tx-service/eth/api/v1/tokens/lists/",
  "summary": "",
  "description": "Returns the list of tokens supported in the Safe Transaction Service",
  "tags": [
    "tokens"
  ],
  "parameters": [
    {
      "name": "limit",
      "in": "query",
      "required": false,
      "description": "Number of results to return per page.",
      "schema": {
        "type": "integer"
      }
    },
    {
      "name": "offset",
      "in": "query",
      "required": false,
      "description": "The initial index from which to return the results.",
      "schema": {
        "type": "integer"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/PaginatedTokenListList"
          }
        }
      }
    }
  }
}