Wormhole · Example Payload

Get Secured Tokens

wormhole

Get Secured Tokens is an example object payload from Wormhole, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdsummarytagsmethodpathparametersresponses

Example Payload

Raw ↑
{
  "operationId": "get-secured-tokens",
  "summary": "",
  "tags": [
    "wormhole"
  ],
  "method": "GET",
  "path": "/api/v1/wormhole/assets/secured-tokens",
  "parameters": [],
  "responses": {
    "200": {
      "description": "OK",
      "schema": {
        "type": "array",
        "items": {
          "$ref": "#/definitions/stats.TokenInfoDTO"
        }
      }
    },
    "500": {
      "description": "Internal Server Error",
      "schema": {}
    }
  }
}