Authentication Required

Restricted strictly to authorized project owner.

or secret key
Release Artifacts
Client download endpoints synced directly to the public API and website.
Semantic version
Direct installer executable URL
Apple Silicon / Universal build
Plan Pricing & Gateway Matrix
Real-time overrides applied instantly to desktop clients and website tiers.
Client API Integration
Standard public payload returned to your landing site (CORS enabled).
fetch('https://api.ghost-desk.app/api/status')
  .then(res => res.json())
  .then(data => {
    // 1. Version & Download
    document.getElementById('download-btn').href = data.downloadUrl;
    document.getElementById('download-btn').innerText = `Download v${data.appVersion}`;

    // 2. Geo Pricing
    const isIndia = data.country === 'IN';
    Object.entries(data.pricing).forEach(([plan, price]) => {
      const el = document.getElementById('price-' + plan);
      if (el) el.innerText = isIndia ? price.inr : price.usd;
    });
  });
Ready Save via ⌘S / Ctrl+S