Developer SDKs

Production-ready, type-safe libraries designed to integrate seamlessly into your stack. Ship faster, scale effortlessly.

Available SDKs

Choose the package that matches your platform. All SDKs share the same core architecture and update cycle.

🍎

iOS

Native Swift package with full SwiftUI support. Optimized for iOS 14+.

swift package add ... Copy
View iOS Docs
🤖

Android

Kotlin & Java support with Jetpack Compose integration. API level 21+.

implementation "com.thatisaq:... Copy
View Android Docs
⚛️

Web / JavaScript

TypeScript-first SDK for React, Vue, Svelte, and vanilla JS. Zero dependencies.

npm install @thatisaq/sdk-web Copy
View Web Docs
🐍

Python

Async-first library for backend services, data pipelines, and AI integrations.

pip install thatisaq-sdk Copy
View Python Docs
💻

CLI Tool

Terminal interface for rapid prototyping, project scaffolding, and deployment.

curl -fsSL https://install... | bash Copy
View CLI Docs
🌐

REST API

Standard HTTP/JSON interface for custom implementations and legacy systems.

GET https://api.thatisaq.dev/v2/ Copy
View API Reference

Quick Start

Initialize and authenticate in under 60 seconds.

import { ThatIsAQ } from '@thatisaq/sdk-web'; // 1. Initialize with your API key const q = new ThatIsAQ(process.env.Q_API_KEY); // 2. Connect to the network await q.connect('us-east-1'); // 3. Ready to make requests const data = await q.projects.list({ limit: 10 }); console.log(`Found ${data.count} projects`);

Built for Production

Every SDK is engineered with reliability, performance, and developer experience in mind.

🔒

Secure by Default

Automatic token rotation, encrypted payloads, and SOC2-compliant data handling out of the box.

Async & Reactive

Native async/await support, WebSockets for real-time events, and efficient memory management.

📊

Observable Metrics

Built-in telemetry hooks. Plug into Datadog, New Relic, or OpenTelemetry with one line.

🔄

Backward Compatible

Strict semver. We never break public APIs. Migration guides provided for major version bumps.

Explore the Full Documentation

Detailed guides, API references, architecture diagrams, and community examples.