Sol SkyePay API

Callable infra

SkyePay is an API gateway too.

Client apps can list approved repo SkyePay offers, create zero-up-front subscription trials, route buyers to secure checkout, and read safe public order status without handling card data or bypassing FS27 payment and usage gates.

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

Bridge Estifarr API gate

The SDK presents one visual gate and one FS27 authority lane.

Developers can embed the SkyePay client without inventing another login system. Bridge Estifarr supplies the visual threshold, FS27 signs sessions, SkyePay creates checkout, and Citadel keeps receipts attached to live order state.

01BRIDGE ESTIFARR VISUAL SECURITY ... [OK]

The embeddable surface inherits Sol visual trust signals.

02FS27 signs sessions

SDK consumers reuse accepted shared-session headers and introspection.

03SkyePay creates checkout

Apps call approved offer and checkout routes without touching card data.

04Citadel keeps receipts

Status reads and owner review remain tied to audit records.

API contract

Stable routes for apps, previews, and repo platforms.

Browser SDK

Use the client from any approved app origin.

<script src="https://skyegatefs27-citadeldb.graylondonskyes.workers.dev/assets/skyepay-client.js"></script>
<script>
  const skyePay = new SkyePayClient({
    baseUrl: "https://skyegatefs27-citadeldb.graylondonskyes.workers.dev",
    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>