Back

AETHERIS DEVELOPER PLATFORM

Build with Aetheris.

One unified API. Four frontier models. Production-grade infrastructure for the next generation of intelligent products.

AVAILABLE MODELS

Choose your intelligence.

Available

ALPHA

Flagship reasoning model

ALPHA is the Aetheris flagship reasoning model — built for deep analysis, long-context understanding, and reliable agentic workflows.

200K
Context
1.2s
Latency
98%
Quality
ReasoningCodeLong ContextTools
Coming soon

SKY

Multimodal vision model

SKY is the Aetheris multimodal vision model — image understanding, OCR, and rich visual reasoning paired with natural language.

128K
Context
900ms
Latency
96%
Quality
VisionOCRMultimodalReasoning
Coming soon

SKYFLASH

Ultra-fast lightweight model

SKYFLASH is optimized for speed — millisecond response times for chat, classification, summarization, and real-time experiences.

32K
Context
180ms
Latency
High
Throughput
RealtimeChatClassificationStreaming
Coming soon

SKY 1.0

General purpose foundation

SKY 1.0 is the balanced general-purpose foundation model that powers most Aetheris products — accurate, affordable, dependable.

64K
Context
600ms
Latency
94%
Quality
ChatSummarizationWritingTranslation
Coming soon

AMIT 1

Image generation

AMIT 1 is the Aetheris image generation model — photorealistic outputs, fast renders, and strong prompt adherence.

2048px
Resolution
3.4s
Render
Studio
Quality
Text-to-ImageEditingVariationsUpscale

DEVELOPER EXPERIENCE

Everything you need to build.

API Playground

Test prompts against any model in real time.

Try it now →

Documentation

Clear, complete reference for every endpoint.

Try it now →

Code Examples

Curl, JavaScript, Python, and more.

Try it now →

Official SDKs

Drop-in libraries for popular languages.

Try it now →

Dashboard

Usage analytics, billing, and key management.

Try it now →

Streaming

Token-level streaming with SSE.

Try it now →
Non-streaming request
curl https://aetherisz.in/v1/alpha \
  -H "Authorization: Bearer sk-aet-YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "alpha",
    "messages": [
      { "role": "user", "content": "Design the future." }
    ]
  }'
Streaming (SSE)
curl -N https://aetherisz.in/v1/alpha \
  -H "Authorization: Bearer sk-aet-YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "alpha",
    "stream": true,
    "messages": [
      { "role": "user", "content": "Stream a haiku." }
    ]
  }'

Get your key from the Dashboard. Pricing shown per model above; billed per token in INR.

LIVE API SERVICE

Alpha — try it now.

One endpoint. Multiple models. Real-time streaming. Production-ready.

POST/v1/alpha

cURL

curl -X POST /v1/alpha \
  -H "Authorization: Bearer sk-aet-..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "alpha",
    "stream": true,
    "messages": [{"role":"user","content":"Hello"}]
  }'

JavaScript

const res = await fetch("/v1/alpha", {
  method: "POST",
  headers: {
    "Authorization": "Bearer sk-aet-...",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "alpha",
    stream: true,
    messages: [{ role: "user", content: "Hello" }],
  }),
});

const reader = res.body!.getReader();
const decoder = new TextDecoder();
while (true) {
  const { value, done } = await reader.read();
  if (done) break;
  for (const line of decoder.decode(value).split("\n")) {
    if (!line.startsWith("data:")) continue;
    const payload = line.slice(5).trim();
    if (payload === "[DONE]") break;
    const { content } = JSON.parse(payload);
    process.stdout.write(content);
  }
}

Playground

Online

Flagship reasoning model

Response will appear here.