Safe (Gnosis Safe) · Example Payload

Tokens_Retrieve

Returns detailed information on a given token supported in the Safe Transaction Service

tokens

Tokens_Retrieve 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_retrieve",
  "method": "GET",
  "path": "/tx-service/eth/api/v1/tokens/{address}/",
  "summary": "",
  "description": "Returns detailed information on a given token supported in the Safe Transaction Service",
  "tags": [
    "tokens"
  ],
  "parameters": [
    {
      "name": "address",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/TokenInfoResponse"
          }
        }
      }
    },
    "422": {
      "description": "Invalid ethereum address",
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/CodeErrorResponse"
          }
        }
      }
    }
  }
}