The embeddable surface inherits Sol visual trust signals.
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.
SDK consumers reuse accepted shared-session headers and introspection.
Apps call approved offer and checkout routes without touching card data.
Status reads and owner review remain tied to audit records.
API contract
Stable routes for apps, previews, and repo platforms.
- API manifest JSON
- OpenAPI contract
- Browser SDK
- Offer catalog source:
metraiyux_0s_site/brain/sales-offer-registry.json. - Set
SKYPAY_ALLOWED_ORIGINSbefore cross-origin browser calls.
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>