Download Game! Currently 92 players and visitors. Last logged in:SpickAurosDescadJuutas

Blitzer's Blog >> 71549

Back to blogs index
Posted: 26 Jul 2026 12:07 [ permalink ]
135 API ROUTE GET "/openapi.json" RETURN DOCS$ AS JSON

$ curl http://localhost:3333/openapi.json
{
  "openapi": "3.0.0",
  "info": {
    "title": "MeshAPI CRM",
    "version": "1.0.0"
  },
  "paths": {
    "/hello": {
      "get": {
        "summary": "ROUTE",
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/get/{key}": {
      "get": {
        "summary": "BINDVAR_GET",
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/set/{key}": {
      "post": {
        "summary": "BINDVAR_POST",
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/calculate": {
      "post": {
        "summary": "JS",
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  }
}