Aptos · Example Payload

Spec

Provides a UI that you can use to explore the API. You can also retrieve the API directly at `/spec.yaml` and `/spec.json`.

General

Spec 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": "/spec",
  "operationId": "spec",
  "summary": "Show OpenAPI explorer",
  "description": "Provides a UI that you can use to explore the API. You can also\nretrieve the API directly at `/spec.yaml` and `/spec.json`.",
  "tags": [
    "General"
  ],
  "parameters": [],
  "requestBody": null,
  "responses": {
    "200": {
      "contentType": "text/html",
      "schema": {
        "type": "string"
      },
      "example": {}
    }
  }
}