Aptos · Example Payload

Info

General

Info is an example object payload from Aptos, with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

methodpathoperationIdsummarydescriptiontagsparametersrequestBodyresponses

Example Payload

Raw ↑
{
  "method": "GET",
  "path": "/info",
  "operationId": "info",
  "summary": "Show some basic info of the node.",
  "description": "",
  "tags": [
    "General"
  ],
  "parameters": [],
  "requestBody": null,
  "responses": {
    "200": {
      "contentType": "application/json",
      "schema": {
        "type": "object",
        "additionalProperties": {}
      },
      "example": {}
    }
  }
}