MK

Generated API Specifications

Real-time OpenAPI 3.1 & Postman contracts extracted directly from code AST with Amazon Bedrock.

POST/api/v1/payments/stripe/webhook
Verified

Ingests Stripe asynchronous webhook events and verifies HMAC signatures

acme-corp/payment-service2 mins ago
POST/api/v2/oauth/token/introspect
Verified

RFC 7662 OAuth 2.0 Token Introspection for internal microservices

acme-corp/user-identity-api14 mins ago
PUT/api/v1/inventory/batch-transfer
Drift Detected

Executes atomic warehouse SKU transfer across geographical hubs

acme-corp/inventory-gateway1 hour ago
POST/api/v3/telemetry/ingest
Draft

High-throughput stream ingestion for client-side diagnostic metrics

acme-corp/analytics-collectorJust now
POST/api/v1/notifications/push/dispatch
Verified

Sends multi-channel mobile notifications via APNs and FCM clusters

acme-corp/notification-engine3 hrs ago
POST

/api/v1/payments/stripe/webhook

Ingests Stripe asynchronous webhook events and verifies HMAC signatures

Tags:#Payments#Webhooks#StripeAuth: Bearer JWT
REQUEST BODY SCHEMA (application/json)OpenAPI 3.1.0 Strict
{
  "type": "object",
  "required": ["id", "type", "data"],
  "properties": {
    "id": { "type": "string", "example": "evt_1Nt8kY2eZvKYlo2C0" },
    "type": { "type": "string", "enum": ["payment_intent.succeeded", "charge.refunded"] },
    "data": {
      "type": "object",
      "properties": {
        "object": { "type": "object", "properties": { "amount": { "type": "integer" } } }
      }
    }
  }
}
RESPONSE SCHEMA (200 OK)p99: 42ms
{
  "status": 200,
  "description": "Webhook received successfully",
  "content": {
    "application/json": {
      "schema": {
        "type": "object",
        "properties": { "received": { "type": "boolean", "example": true } }
      }
    }
  }
}