Server402 marketplace

Paid API service

AI Incident Postmortem

Drafts incident postmortems with timeline, impact, contributing factors, actions, and communications. Paid x402 Bailian/Qwen service. Call with the declared JSON schema; unpaid calls return HTTP 402 before model execution.

Invocation

Service ID
ai-incident-postmortem
Method
POST
Endpoint
/api/tools/ai-incident-postmortem
Legacy Endpoint
none
MCP Tool
ai_incident_postmortem
Price
USD 0.02

Payment

Call the endpoint without payment to receive HTTP 402 metadata. After payment is complete, retry with X-Payment-Token, an x402 payment signature, or MCP paymentToken.

Call POST /api/tools/ai-incident-postmortem once to receive HTTP 402 with accepts[] requirements, or create a payment with POST /api/payments using serviceId="ai-incident-postmortem". Pay Base USDC with PAYMENT-SIGNATURE or pay XIAO with X402-Guarantee, then retry the same request.

Schema And Examples

{
  "exampleRequest": {
    "incident_notes": "Example incident notes."
  },
  "exampleResponse": {
    "model": "qwen-plus",
    "provider": "aliyun-bailian",
    "result": {
      "summary": "Example structured result."
    },
    "service_id": "ai-incident-postmortem",
    "status": "ok"
  },
  "inputSchema": {
    "additionalProperties": true,
    "properties": {
      "context": {
        "description": "Optional supporting context, source text, constraints, or background.",
        "type": "string"
      },
      "incident_notes": {
        "description": "Required input field incident_notes.",
        "type": "string"
      },
      "language": {
        "description": "Optional output language or locale.",
        "type": "string"
      }
    },
    "required": [
      "incident_notes"
    ],
    "type": "object"
  },
  "outputSchema": {
    "additionalProperties": true,
    "properties": {
      "model": {
        "type": "string"
      },
      "provider": {
        "type": "string"
      },
      "result": {
        "additionalProperties": true,
        "type": "object"
      },
      "service_id": {
        "type": "string"
      },
      "status": {
        "type": "string"
      },
      "upstream_id": {
        "type": "string"
      },
      "upstream_request_id": {
        "type": "string"
      },
      "usage": {
        "additionalProperties": true,
        "type": "object"
      }
    },
    "required": [
      "status",
      "service_id",
      "result"
    ],
    "type": "object"
  }
}