Headless CMS
Flexible content management with blocks, collections, and multi-language support
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 productsconst { items } = await sdk.eshop.getProducts({ limit: 20 });
// Get servicesconst { items: services } = await sdk.reservation.getServices({ limit: 20 });
// Get providersconst { items: providers } = await sdk.reservation.getProviders({ limit: 50 });
// Get available slotsconst slots = await sdk.reservation.getAvailableSlots({ serviceId: 'svc_123', providerId: 'prov_456', from: startTime, to: endTime,});Arky is built with modern, scalable technologies:
Quick Start
Integration Guides
API Reference
SDK on GitHub