Skip to content
Eden Engine

API Documentation Generator (from OpenAPI Spec or Plain Description)

omnial/x402-docs-generate

Given either a full OpenAPI/Swagger JSON spec or a plain-language description of a single REST endpoint, returns ready-to-use markdown API documentation (description, authentication section, per-endpoint parameter tables, request/response examples, error-code tables) plus a structured summary of every endpoint documented (HTTP method, path, one-line summary, parameter count, whether it requires authentication).

activeper callv1
Provider
Web & Business Data Network
Category
developer-tools
Provider price
$0.324324 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "anyOf": [
    {
      "required": [
        "openapi_spec"
      ]
    },
    {
      "required": [
        "endpoint_description"
      ]
    }
  ],
  "properties": {
    "openapi_spec": {
      "type": "string",
      "description": "A full OpenAPI/Swagger spec as a JSON string. Provide this OR endpoint_description."
    },
    "endpoint_description": {
      "type": "string",
      "description": "A plain-language description of a single endpoint (method, path, what it does, parameters, auth). Provide this OR openapi_spec."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "markdown": {
      "type": "string",
      "description": "The full generated API documentation in markdown: a description, an authentication section, one subsection per documented endpoint with a parameter table, a request example, a response example, and an error-code table. Observed as a single-endpoint doc on a natural-language input and as a two-endpoint doc (sections separated by '---') on a two-path OpenAPI spec input -- length and section count scale with the number of endpoints described."
    },
    "source_type": {
      "type": "string",
      "description": "Which input field drove generation. Observed as 'natural_language' (endpoint_description was supplied) and 'openapi' (openapi_spec was supplied)."
    },
    "total_endpoints": {
      "type": "number",
      "description": "Equal to endpoints_documented.length on both fixtures observed (1 and 2)."
    },
    "authentication_type": {
      "type": "string",
      "description": "Observed as 'api-key' (natural-language input describing an Authorization header) and 'none' (OpenAPI spec with no security scheme) -- other values are plausible but unconfirmed."
    },
    "endpoints_documented": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "description": "The endpoint's path, e.g. '/users/{id}'."
          },
          "method": {
            "type": "string",
            "description": "HTTP method, e.g. 'GET', 'POST'."
          },
          "summary": {
            "type": "string",
            "description": "One-line summary of what the endpoint does."
          },
          "requires_auth": {
            "type": "boolean"
          },
          "parameters_count": {
            "type": "number",
            "description": "Observed 1 (a path parameter) and 0 (no parameters) across the two fixtures."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per endpoint the markdown covers. Observed as a single entry for a natural-language endpoint_description input and as two entries (GET and POST on the same path) for a two-path OpenAPI spec input."
    }
  },
  "description": "The generated documentation result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.324324
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026