v2.4.0 — Now with streaming support
The API that engineers trust
before they install.
Sub-50ms response times. Three lines to integrate. See it work right here — no account, no install, no promises.
integration.ts↔response.json
1import { Compile } from 'compile-sdk'23// Initialize with your project key4const client = new Compile({5 apiKey: process.env.COMPILE_KEY,6 region: 'us-east-1',7});89// Execute a query — returns in < 50ms10const result = await client.query({ endpoint: 'users' });
→ Response
{"status": "ok""latency_ms": 47"request_id": "req_7xKp9mN2""data": [{ "id": "usr_001", "name": "Priya Sharma" }{ "id": "usr_002", "name": "Marcus Webb" }{ "id": "usr_003", "name": "Yuki Tanaka" }]"total": 2847"cursor": "eyJwYWdlIjoxfQ"}
47msAvg latency
99.99%Uptime SLA
8 languagesSDKs
4.2B+Requests/day
02 — SDK Explorer
Your stack. Our SDK.
Switch languages — the integration stays clean. Every SDK ships with full type definitions, retry logic, and zero config streaming.
● typescript-sdk@2.4.043ms
← Integration
1import { Compile } from 'compile-sdk' ;23const client = new Compile({4 apiKey: process.env.COMPILE_KEY,5});67const result = await client.query({8 endpoint: 'events',9 filter: { type: 'page_view' },10 limit: 100,11});
→ Response
1{2 "status": "ok",3 "latency_ms": 43,4 "count": 100,5 "data": [6 { "id": "evt_001", "type": "page_view", "ts": 1740456000 },7 { "id": "evt_002", "type": "page_view", "ts": 1740456012 },8 ...98 more9 ]10}
TypeScriptPythonGoRustRubyJavaPHPC#
03 — Benchmarks
Scale to 1M requests.
Latency doesn't move.
Drag the slider to simulate request volume. Watch Compile hold flat while every competitor degrades.
Request volume32K req/s
1K10K100K1M
Compile
53ms
Competitor A
375ms
Competitor B
253ms
Latency (ms) vs Request Volume
● Compile● Others
500ms250ms0ms
53ms
1K10K100K1M
05 — Get Started
You've seen the proof.
Now run the install.
One command. No account required to start. Your first 10 million requests are free.
curl -sL get.compile.dev | shNo credit card · No account required · First 10M requests free
Running in production at