Get. Retrieve. Q.

High-performance data access infrastructure. Fetch, transform, and deliver structured payloads with sub-50ms latency and enterprise-grade reliability.

GET Fetch Layer

Lightweight, stateless endpoints optimized for raw data extraction. Designed for high-concurrency read operations with intelligent caching at the edge.

  • REST & GraphQL endpoints
  • Automatic payload compression
  • Edge-cached responses
  • Rate-limited & token-authenticated

RETRIEVE Processing Layer

Advanced data orchestration that transforms, aggregates, and contextualizes raw fetches. Adds business logic, schema validation, and real-time enrichment.

  • Multi-source aggregation
  • Real-time data transformation
  • Schema validation & fallbacks
  • Event-driven webhooks

Interactive Console

Test our endpoints directly. Switch between GET and RETRIEVE modes to see the difference in payload structure and processing.

that-isa-q-sandbox v2.4.1

Performance at Scale

Built for mission-critical applications. Real-time metrics from our global edge network.

42ms
Avg. Latency
99.99%
Uptime SLA
1.2M+
Daily Requests
280+
Edge Nodes

Quick Start

Integrate in minutes. Choose your preferred language or SDK.

1# Basic GET request with auth token
2curl -X GET https://api.thatisaq.com/v2/data/users \
3  -H "Authorization: Bearer YOUR_API_KEY" \
4  -H "Accept: application/json"
5
6# Advanced RETRIEVE with transformation rules
7curl -X POST https://api.thatisaq.com/v2/retrieve/pipeline \
8  -H "Content-Type: application/json" \
9  -d '{"sources": ["db", "cache"], "format": "normalized"}'
1import { QClient } from '@thatisaq/sdk-js';
2
3const client = new QClient({ apiKey: process.env.Q_API_KEY });
4
5// Simple fetch
6const data = await client.get('/v2/data/products', { cache: true });
7
8// Complex retrieval with pipeline
9const result = await client.retrieve({
10  sources: ['postgres', 'redis'],
11  transform: 'aggregate_v2'
12});
1from thatisaq import QClient
2
3client = QClient(api_key="YOUR_API_KEY")
4
5# Direct GET request
6data = client.get("/v2/data/inventory", timeout=5.0)
7
8# RETRIEVE with schema validation
9payload = client.retrieve(
10  sources=["mongo", "api"],
11  schema="user_v3",
12  fallback=True
13)

Ready to Accelerate Your Data Stack?

Get production API keys, dedicated support, and custom pipeline configurations tailored to your infrastructure.

Request API Access → Read Full Docs