SkyeGateFS27 SkyePay API

Callable infra

SkyePay is an API gateway too.

Client apps can list approved offers, create zero-up-front subscription trials, route buyers to Stripe Checkout, and read safe public order status without handling card data or bypassing FS27 owner approval.

GET /skyepay/offers POST /skyepay/checkout GET /skyepay/status Vault gate policy OpenAPI 3.1

API contract

Stable routes for apps, previews, and repo platforms.

Browser SDK

Use the client from any approved app origin.

<script src="https://skyesol.netlify.app/assets/skyepay-client.js"></script>
<script>
  const skyePay = new SkyePayClient({
    baseUrl: "https://skyesol.netlify.app",
    client: "metraiyux-0s"
  });

  await skyePay.redirectToCheckout({
    offer_id: "metraiyux-starter-command",
    customer_name: "Client Owner",
    customer_email: "owner@example.com",
    company_name: "Client Company"
  });
</script>