Features / API-First
Every content operation is available through fully documented, versioned APIs. Build with GraphQL for flexible queries or REST for predictable caching — both deliver identical performance and security.
Dual API Architecture
Choose GraphQL for precise data fetching or REST for simplicity and caching. Both are auto-generated from your content models with full OpenAPI and GraphQL schema documentation.
Nested relationships, filtering, and sorting in a single request. Real-time subscriptions for live content updates. Complexity limits prevent abuse.
query {
articles(locale: "en-US", limit: 10) {
title
slug
author { name avatar }
categories { name }
body { json }
}
}Standard endpoints with JSON responses, HTTP caching headers, ETags, and conditional requests. OpenAPI 3.0 spec auto-generated.
GET /api/v1/content/articles ?locale=en-US &limit=10 &include=author,categories &fields=title,slug,body &order=-publishedAt
Built for Production
Versioning, rate limiting, pagination, and field filtering are built into every endpoint — not afterthoughts.
Every API version is maintained independently. Deprecation notices give you months of lead time before any breaking change. Pin your integration to a version and upgrade on your schedule.
Transparent rate limits with headers on every response. Burst allowances for traffic spikes. Per-key quotas let you control consumption across teams and environments.
Efficient pagination that works with real-time content changes. No duplicate or missing entries when content is published mid-page. Supports both cursor and offset modes.
Request only the fields you need. Reduce payload sizes and improve performance with fine-grained field selection on both REST and GraphQL endpoints.
Official SDKs
Type-safe SDKs with auto-generated models, built-in retries, and comprehensive documentation. Install and start querying in minutes.
Full type safety with auto-generated types from your content models
Async-first client with Pydantic models and pagination helpers
Lightweight client with context support and connection pooling
Idiomatic Ruby client with ActiveRecord-style query builder
PSR-compliant client with Laravel and Symfony integrations
Native iOS/macOS SDK with Combine and async/await support
Interactive API Playground included in every CuberIQ space. Test queries, explore schemas, and generate SDK code directly from the admin panel.
Explore CuberIQ's APIs with our interactive playground. No account required to try.