Skip to content

Welcome to Arky

All-in-one business platform with headless CMS, e-commerce, reservations, and newsletters. Build modern web experiences with our powerful API and SDK.

Arky is a comprehensive business platform that combines essential tools into one unified API:

Headless CMS

Flexible content management with blocks, collections, and multi-language support

E-commerce

Complete product catalog, orders, quotes, and multi-currency support

Reservations

Advanced booking system with provider schedules and availability management

Newsletter

Subscriber management and email campaigns with template support

import { createArkySDK } from 'arky-sdk';
const sdk = createArkySDK({
baseUrl: 'https://api.arky.io',
businessId: 'your-business-id',
market: 'us',
autoGuest: true,
getToken: () => JSON.parse(localStorage.getItem('arky_token') || 'null'),
setToken: (token) => localStorage.setItem('arky_token', JSON.stringify(token)),
logout: () => localStorage.removeItem('arky_token'),
});
// Get products
const { items } = await sdk.eshop.getProducts({ limit: 20 });
// Get services
const { items: services } = await sdk.reservation.getServices({ limit: 20 });
// Get providers
const { items: providers } = await sdk.reservation.getProviders({ limit: 50 });
// Get available slots
const slots = await sdk.reservation.getAvailableSlots({
serviceId: 'svc_123',
providerId: 'prov_456',
from: startTime,
to: endTime,
});
  • 🔐 Authentication - JWT, OAuth2, API keys, and role-based access control
  • 💳 Payments - Stripe integration with multi-currency support
  • 📊 Analytics - ClickHouse-powered insights and reporting
  • 🔔 Notifications - Push notifications via OneSignal
  • 📦 Media Management - S3-backed storage with automatic image optimization
  • 🌍 Multi-tenancy - Business isolation with markets and zones
  • ⚡ Real-time - WebSocket support for live updates

Arky is built with modern, scalable technologies:

  • Backend: Rust + Axum
  • Database: TiKV (distributed transactions)
  • Search: Qdrant (vector search)
  • Cache: Redis
  • Analytics: ClickHouse
  • Storage: S3-compatible