|
| 1 | +openapi: 3.1.0 |
| 2 | +info: |
| 3 | + title: SoftJunk Root Buyer Hub |
| 4 | + version: "1.0.0" |
| 5 | + description: Root discovery API for the 5 USD SoftJunk lead follow-up offer, PayPal handoff, buyer route maps, and payment verification rule. |
| 6 | +servers: |
| 7 | + - url: https://trungcodeer.github.io |
| 8 | +paths: |
| 9 | + /root-offer.json: |
| 10 | + get: |
| 11 | + operationId: getRootOffer |
| 12 | + summary: Get the root SoftJunk offer packet. |
| 13 | + responses: |
| 14 | + "200": |
| 15 | + description: Root offer JSON with price, PayPal URL, buyer routes, and fulfillment rule. |
| 16 | + content: |
| 17 | + application/json: |
| 18 | + schema: |
| 19 | + type: object |
| 20 | + /.well-known/softjunk-root-offer.json: |
| 21 | + get: |
| 22 | + operationId: getWellKnownRootOffer |
| 23 | + summary: Get the well-known root SoftJunk offer packet. |
| 24 | + responses: |
| 25 | + "200": |
| 26 | + description: Compact well-known offer JSON for crawlers and buyer agents. |
| 27 | + content: |
| 28 | + application/json: |
| 29 | + schema: |
| 30 | + type: object |
| 31 | + /.well-known/ai-plugin.json: |
| 32 | + get: |
| 33 | + operationId: getRootAiPluginManifest |
| 34 | + summary: Get the AI plugin manifest for the root buyer hub. |
| 35 | + responses: |
| 36 | + "200": |
| 37 | + description: Plugin-style discovery manifest pointing to this OpenAPI document. |
| 38 | + content: |
| 39 | + application/json: |
| 40 | + schema: |
| 41 | + type: object |
| 42 | + /llms.txt: |
| 43 | + get: |
| 44 | + operationId: getRootLlmsText |
| 45 | + summary: Get the AI-readable root buyer hub text. |
| 46 | + responses: |
| 47 | + "200": |
| 48 | + description: Plain-text buyer routing, PayPal handoff, and verification rule. |
| 49 | + content: |
| 50 | + text/plain: |
| 51 | + schema: |
| 52 | + type: string |
| 53 | + /quiet-lead-follow-up/pay-5-usd-paypal.html: |
| 54 | + get: |
| 55 | + operationId: openPayPalHandoff |
| 56 | + summary: Open the 5 USD PayPal handoff page. |
| 57 | + responses: |
| 58 | + "200": |
| 59 | + description: Buyer-facing PayPal handoff page for the SoftJunk 5 USD offer. |
| 60 | + content: |
| 61 | + text/html: |
| 62 | + schema: |
| 63 | + type: string |
| 64 | + /quiet-lead-follow-up/buyer-route.json: |
| 65 | + get: |
| 66 | + operationId: getQuietLeadBuyerRoute |
| 67 | + summary: Get exact-intent quiet lead buyer routes. |
| 68 | + responses: |
| 69 | + "200": |
| 70 | + description: Intent route JSON mapping quiet lead problems to free pages and the PayPal handoff. |
| 71 | + content: |
| 72 | + application/json: |
| 73 | + schema: |
| 74 | + type: object |
| 75 | + /softjunk-lead-kit/buyer-index.json: |
| 76 | + get: |
| 77 | + operationId: getProductBuyerIndex |
| 78 | + summary: Get the product buyer decision index. |
| 79 | + responses: |
| 80 | + "200": |
| 81 | + description: Buyer index with free tools, paid offer, exact PayPal URL, and verification rule. |
| 82 | + content: |
| 83 | + application/json: |
| 84 | + schema: |
| 85 | + type: object |
| 86 | + /softjunk-lead-kit/checkout.html: |
| 87 | + get: |
| 88 | + operationId: openProductCheckout |
| 89 | + summary: Open the product checkout page. |
| 90 | + responses: |
| 91 | + "200": |
| 92 | + description: Minimal checkout page with PayPal.Me payment link and order note. |
| 93 | + content: |
| 94 | + text/html: |
| 95 | + schema: |
| 96 | + type: string |
| 97 | + /softjunk-lead-kit/answer-engine.json: |
| 98 | + get: |
| 99 | + operationId: getAnswerEngine |
| 100 | + summary: Get lead follow-up answer-engine data. |
| 101 | + responses: |
| 102 | + "200": |
| 103 | + description: JSON answers for high-intent lead follow-up questions with payment routing. |
| 104 | + content: |
| 105 | + application/json: |
| 106 | + schema: |
| 107 | + type: object |
| 108 | + /sitemap.xml: |
| 109 | + get: |
| 110 | + operationId: getRootSitemap |
| 111 | + summary: Get the root sitemap. |
| 112 | + responses: |
| 113 | + "200": |
| 114 | + description: Sitemap for root discovery and buyer routes. |
| 115 | + content: |
| 116 | + application/xml: |
| 117 | + schema: |
| 118 | + type: string |
0 commit comments